Skip to content

Commit 11c3465

Browse files
committed
fix wrong VM path in linux packaging
fix #642
1 parent ee89945 commit 11c3465

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@ site/
44
*.html
55

66
*.swp
7+
8+
.DS_Store

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function package_linux_version() {
6565
OUTPUT_PATH=build
6666
RESOURCES_PATH=$OUTPUT_PATH/shared
6767
rm -f $OUTPUT_PATH; mkdir $OUTPUT_PATH
68-
mkdir $OUTPUT_PATH/icons; cp icons/pharo-launcher.png $OUTPUT_PATH/
68+
mkdir $OUTPUT_PATH/icons; cp icons/pharo-launcher.png $OUTPUT_PATH/icons/
6969
cp linux/pharo-launcher-ui $OUTPUT_PATH/
7070
cp scripts/pharo-launcher.sh $OUTPUT_PATH/pharo-launcher
7171
mkdir $RESOURCES_PATH
@@ -74,7 +74,7 @@ function package_linux_version() {
7474
cp PharoLauncher.image $RESOURCES_PATH
7575
cp PharoLauncher.changes $RESOURCES_PATH
7676
cp Pharo*.sources $RESOURCES_PATH
77-
fetch_current_vm_to $(pwd)/$RESOURCES_PATH
77+
fetch_current_vm_to $OUTPUT_PATH
7878
# ensure the linux scripts are executable
7979
chmod +x "$OUTPUT_PATH/pharo-launcher" "$OUTPUT_PATH/pharo-launcher-ui" || true
8080
}

0 commit comments

Comments
 (0)