mirror of
https://github.com/quasar/Quasar.git
synced 2026-04-25 23:35:58 +03:00
[GH-ISSUE #508] "Cannot find client.bin" #273
Labels
No labels
bug
bug
cant-reproduce
discussion
duplicate
easy
enhancement
help wanted
improvement
invalid
need more info
pull-request
question
wont-add
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Quasar#273
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Korons on GitHub (Aug 14, 2016).
Original GitHub issue: https://github.com/quasar/Quasar/issues/508
When run with mono 4.4.2.11 on linux (Ubuntu 16.04) the builder errors out with "Cannot find client.bin".
@MaxXor commented on GitHub (Aug 14, 2016):
Please extract all files from the zip if you are using a release from here.
@Korons commented on GitHub (Aug 14, 2016):
@MaxXor I built it from source. It seems that
if (!File.Exists("client.bin"))in 'Forms/FrmBuilder.cs' is returning true no matter if the file exists or not.@MaxXor commented on GitHub (Aug 14, 2016):
Can you check if the file
bin/Release/client.binexists on your system after building it inreleaseconfiguration?File.Existsreturns also false when you got no permission to access the file.edit: For me it's building fine on Debian 8 with mono 4.4.2.11. Could be your permissions of the file, if you compiled with MonoDevelop started as root.
@MaxXor commented on GitHub (Aug 14, 2016):
Can you try opening a terminal inside the directory and then execute the Server by
mono Quasar.exe?@Korons commented on GitHub (Aug 14, 2016):
@MaxXor If I launch it with
mono Quasar.exeit seems to work fine and can build the client, but if I right click and selectopen with monoit fails. I have no idea what's causing this but it's safe to say it isn't a bug in Quasar@MaxXor commented on GitHub (Aug 14, 2016):
The cause for this is that for the building process the working directory needs to be the Quasar directory. I think when you select to open it with mono, it uses a different directory.