diff options
| author | 2025-04-28 14:11:28 -0400 | |
|---|---|---|
| committer | 2025-04-28 14:11:28 -0400 | |
| commit | c8c0af300dde117a839f2d5d6b777694d7f118e9 (patch) | |
| tree | 3297f1ba256da0b837fbaa9c581d7f420ce98a4a /scripts | |
| parent | 61492af23ecc5dd9ab4956a84a7c0451deb8b84b (diff) | |
| download | camu-c8c0af300dde117a839f2d5d6b777694d7f118e9.tar.gz camu-c8c0af300dde117a839f2d5d6b777694d7f118e9.tar.bz2 camu-c8c0af300dde117a839f2d5d6b777694d7f118e9.zip | |
Minor restructure and dependency updates
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/cmv.sh | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/scripts/cmv.sh b/scripts/cmv.sh deleted file mode 100755 index 0bf2de5..0000000 --- a/scripts/cmv.sh +++ /dev/null @@ -1,18 +0,0 @@ -#! /usr/bin/env bash -ORIGIN="$PWD" -CMD=() -for dir in "$@" -do - if [[ $dir == http\://* || $dir == https\://* || $dir == cdda\://* ]]; then - EXP=$dir - else - EXP=$(realpath -s "`printf '%b' \"$dir\"`") - if [[ ! -f $EXP ]]; then - EXP=";"$dir - fi - fi - CMD+=("$EXP") -done -cd $HOME/c/camu/build/ -../scripts/run.sh "${CMD[@]}" -cd "$ORIGIN" |