mirror of
https://github.com/eosswedenorg/antelope-keygen
synced 2026-06-16 03:44:56 +02:00
12 lines
197 B
Bash
Executable file
12 lines
197 B
Bash
Executable file
#!/bin/bash
|
|
|
|
MANIFEST=build/install_manifest.txt
|
|
|
|
if [ ! -f ${MANIFEST} ]; then
|
|
echo "Missing manifest: ${MANIFEST}" > /dev/stderr
|
|
exit 1
|
|
fi
|
|
|
|
for file in $(cat ${MANIFEST}); do
|
|
rm -f $file
|
|
done
|