Skip to content
Snippets Groups Projects
unconfigure 130 B
#!/bin/sh
set -eu

rm /app/app
rm /app/usr
rm /app/var

# We don't use the Makefile
cat > Makefile <<END
all:
	:

install:
	:
END