Skip to content

Commit

Permalink
fix wrong VM path in linux packaging
Browse files Browse the repository at this point in the history
fix #641
  • Loading branch information
demarey committed Jan 15, 2024
1 parent ee89945 commit 192eaf4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ site/
*.html

*.swp

.DS_Store
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function package_linux_version() {
OUTPUT_PATH=build
RESOURCES_PATH=$OUTPUT_PATH/shared
rm -f $OUTPUT_PATH; mkdir $OUTPUT_PATH
mkdir $OUTPUT_PATH/icons; cp icons/pharo-launcher.png $OUTPUT_PATH/
mkdir $OUTPUT_PATH/icons; cp icons/pharo-launcher.png $OUTPUT_PATH/icons/
cp linux/pharo-launcher-ui $OUTPUT_PATH/
cp scripts/pharo-launcher.sh $OUTPUT_PATH/pharo-launcher
mkdir $RESOURCES_PATH
Expand All @@ -74,7 +74,7 @@ function package_linux_version() {
cp PharoLauncher.image $RESOURCES_PATH
cp PharoLauncher.changes $RESOURCES_PATH
cp Pharo*.sources $RESOURCES_PATH
fetch_current_vm_to $(pwd)/$RESOURCES_PATH
fetch_current_vm_to $(pwd)
# ensure the linux scripts are executable
chmod +x "$OUTPUT_PATH/pharo-launcher" "$OUTPUT_PATH/pharo-launcher-ui" || true
}
Expand Down

0 comments on commit 192eaf4

Please sign in to comment.