From 7ff690371efd3e7aa767643e31213028be2e71be Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Mon, 3 Mar 2014 20:10:48 -0800 Subject: [PATCH] Add clean script Also rename other scripts --- script/clean.sh | 7 +++++++ script/{bootstrap.sh => configure.sh} | 0 script/{ci.sh => test.sh} | 0 3 files changed, 7 insertions(+) create mode 100755 script/clean.sh rename script/{bootstrap.sh => configure.sh} (100%) rename script/{ci.sh => test.sh} (100%) diff --git a/script/clean.sh b/script/clean.sh new file mode 100755 index 00000000..dfa8ff78 --- /dev/null +++ b/script/clean.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +rm -rf \ + build out \ + gyp-mac-tool \ + Makefile *.Makefile *.target.mk \ + *.xcodeproj diff --git a/script/bootstrap.sh b/script/configure.sh similarity index 100% rename from script/bootstrap.sh rename to script/configure.sh diff --git a/script/ci.sh b/script/test.sh similarity index 100% rename from script/ci.sh rename to script/test.sh