mask xy scale, mask boundary only overlay, fix 8 char mask nm bug, rework maskgui...
[goodguy/cinelerra.git] / cinelerra-5.1 / inst.sh
index e7a20c4c17f978ea6cf6d3c7a3bd296a30b3d341..27f7a706366f5e57e9779aca5b7089867d955f24 100755 (executable)
@@ -1,13 +1,11 @@
 #!/bin/bash -e
 # inst.sh <dir> <objs...>
-cr='
-'
 dir="$1"; shift 1
 mkdir -p "$dir"
 if [ "$*" = "*" ]; then exit; fi
 
 for f in "$@"; do
-  if [ -f "$f" ]; then ( umask 755; cp "$f" "$dir" ); continue; fi
+  if [ -f "$f" ]; then cp "$f" "$dir"; continue; fi
   if [ -d "$f" ]; then ( cd $f; $inst_sh "$dir/$f" * )
   else echo "*** Error - inst.sh $f in $dir failed." 1>&2; exit 1; fi
 done