1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-20 09:31:15 +02:00

Cleanup Mac build and subdirectory

This commit is contained in:
Leland Lucius
2015-07-21 18:45:35 -05:00
parent 2b895267e6
commit 582ee7b45e
14 changed files with 195 additions and 953 deletions

10
mac/scripts/copy_nyquist.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/sh
for (( i = 0; i < ${SCRIPT_INPUT_FILE_COUNT}; i++ ))
do
in="$(eval echo \${SCRIPT_INPUT_FILE_${i}})"
out="$(eval echo \${SCRIPT_OUTPUT_FILE_${i}})"
cp -pPR "${in}" "${out}"
done
exit 0