summaryrefslogtreecommitdiff
path: root/tools/windows_packaging/cptovmshare.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/windows_packaging/cptovmshare.sh')
-rwxr-xr-xtools/windows_packaging/cptovmshare.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/tools/windows_packaging/cptovmshare.sh b/tools/windows_packaging/cptovmshare.sh
deleted file mode 100755
index f447f57b5c..0000000000
--- a/tools/windows_packaging/cptovmshare.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-
-. ./mingw-env.sh
-
-cd $BASE || exit 1
-
-if [ -z $ARDOUR_VM_SHARE_DIR ]
-then
- echo "You must set ARDOUR_VM_SHARE_DIR in your environment to use this script!"
- exit 1
-fi
-
-if [ -d $ARDOUR_VM_SHARE_DIR/$PACKAGE_DIR ]; then
- echo "Removing $PACKAGE_DIR from vm share directory ..."
- rm -rf $ARDOUR_VM_SHARE_DIR/$PACKAGE_DIR || exit 1
-fi
-
-echo "Copying $PACKAGE_DIR to vm share directory $ARDOUR_VM_SHARE_DIR ..."
-cp -r $PACKAGE_DIR $ARDOUR_VM_SHARE_DIR || exit 1