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