summaryrefslogtreecommitdiffstats
path: root/testing/source/vtown/kde/build/uplift-builds.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testing/source/vtown/kde/build/uplift-builds.sh')
-rwxr-xr-xtesting/source/vtown/kde/build/uplift-builds.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/testing/source/vtown/kde/build/uplift-builds.sh b/testing/source/vtown/kde/build/uplift-builds.sh
deleted file mode 100755
index 508e92632..000000000
--- a/testing/source/vtown/kde/build/uplift-builds.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-# Update the combined build numbers from the native and vtown build numbers.
-for native in native-build-number/* ; do
- BUILDFILE=$(basename $native)
- if [ "$BUILDFILE" = "increment.sh" ]; then
- continue
- fi
- OLDCONTENTS=$(cat $BUILDFILE 2> /dev/null)
- NEWCONTENTS="$(cat $native)_vtown_$(cat vtown-build-number/$(basename $native))"
- if [ ! "$OLDCONTENTS" = "$NEWCONTENTS" ]; then
- echo "Uplifting $BUILDFILE"
- echo $NEWCONTENTS > $BUILDFILE
- fi
-done