mirror of
https://github.com/primer/css.git
synced 2024-11-23 11:27:26 +03:00
10 lines
162 B
Bash
Executable File
10 lines
162 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
file=publish-files.txt
|
|
if [[ -f $file ]]; then
|
|
echo "deleting all files listed in $file..."
|
|
cat $file | xargs rm -rfv
|
|
rm $file
|
|
fi
|