update to work with newever versions of vala

This commit is contained in:
2019-06-29 12:07:48 -04:00
parent 783baf464b
commit b2d5118615
28 changed files with 195 additions and 88 deletions

View File

@@ -1,7 +1,9 @@
#!/bin/sh
#!/bin/bash
shopt -s extglob
mkdir -p $DESTDIR/$1
if [ -d "$2" ]; then
cp -a $2/* $DESTDIR/$1
cp -a $2/!(CMakeLists.txt) $DESTDIR/$1
else
cp -a $2 $DESTDIR/$1
fi