Revision: 45474
http://sourceforge.net/p/vice-emu/code/45474
Author: compyx
Date: 2025-02-06 10:27:38 +0000 (Thu, 06 Feb 2025)
Log Message:
-----------
Gtk3: bindist script: abort if old bindist dir cannot be removed
Modified Paths:
--------------
trunk/vice/src/arch/gtk3/make-bindist_win32.sh
Modified: trunk/vice/src/arch/gtk3/make-bindist_win32.sh
===================================================================
--- trunk/vice/src/arch/gtk3/make-bindist_win32.sh 2025-02-05 18:40:33 UTC (rev 45473)
+++ trunk/vice/src/arch/gtk3/make-bindist_win32.sh 2025-02-06 10:27:38 UTC (rev 45474)
@@ -123,6 +123,10 @@
echo "Removing an old $BUILDPATH ..."
rm -r -f $BUILDPATH
+if [ "$?" -ne "0" ]; then
+ echo "Failed to remove $BUILDPATH, aborting."
+ exit 1
+fi
echo "Generating a $WINXX GTK3 port binary distribution..."
mkdir -p $BUILDPATH/bin
@@ -242,9 +246,6 @@
fi
-echo "TOPSRCDIR = $TOPSRCDIR"
-echo "BUILDPATH = $BUILDPATH"
-
cp -a $TOPSRCDIR/data/C128 $TOPSRCDIR/data/C64 $BUILDPATH
cp -a $TOPSRCDIR/data/C64DTV $TOPSRCDIR/data/CBM-II $BUILDPATH
cp -a $TOPSRCDIR/data/DRIVES $TOPSRCDIR/data/PET $BUILDPATH
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|