4 lines
88 B
Bash
4 lines
88 B
Bash
|
|
#!/bin/sh
|
||
|
|
test -f "$1".zip && rm "$1".zip
|
||
|
|
echo "[cleanup_package.sh] deleting $dir.zip"
|