• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!
  • Hello [name]! Thanks for joining the GMC. Before making any posts in the Tech Support forum, can we suggest you read the forum rules? These are simple guidelines that we ask you to follow so that you can get the best help possible for your issue.

Linux Generated .deb file is empty

R

RibShark

Guest
I am trying to generate a .deb file for a game, however when I try the .deb file always ends up empty, only containing the "DEBIAN/control" file and the "opt/GameName/assets" folder with no files in it. The game files are generated on the Ubuntu 14.04 installation, and they run, however they are not included in the .deb file.

There are some errors in the log:
Code:
+ cp /home/user/GameMaker-Studio/GMStudio_runner GameName/opt/GameName/GameName
cp: cannot stat ‘/home/user/GameMaker-Studio/GMStudio_runner’: No such file or directory
+ chmod 755 GameName/opt/GameName/GameName
chmod: cannot access ‘GameName/opt/GameName/GameName’: No such file or directory
+ unzip /home/user/GameMaker-Studio/GameAssetsLinux.zip -d GameName/opt/GameName
unzip:  cannot find or open /home/user/GameMaker-Studio/GameAssetsLinux.zip, /home/user/GameMaker-Studio/GameAssetsLinux.zip.zip or /home/user/GameMaker-Studio/GameAssetsLinux.zip.ZIP.
+ chmod 644 GameName/opt/GameName/assets/splash.png
chmod: cannot access ‘GameName/opt/GameName/assets/splash.png’: No such file or directory
+ chmod 644 GameName/opt/GameName/assets/icon.png
chmod: cannot access ‘GameName/opt/GameName/assets/icon.png’: No such file or directory
 
Top