aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Bosch2013-12-13 21:32:05 -0800
committerTobias Bosch2013-12-13 21:49:22 -0800
commitb0474cb984ed960e4d40f51402d21c0f455c0b0b (patch)
tree95c4c5eff9c275022beed61c0bf42fe2cc6ff09a
parent9a4c9e6487e0f51275a7820d0c162aceeadbf561 (diff)
downloadangular.js-b0474cb984ed960e4d40f51402d21c0f455c0b0b.tar.bz2
chore(build): remove stale build files
-rwxr-xr-xrelease-commit.sh34
-rw-r--r--start-iteration.sh5
2 files changed, 0 insertions, 39 deletions
diff --git a/release-commit.sh b/release-commit.sh
deleted file mode 100755
index f05bde20..00000000
--- a/release-commit.sh
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/usr/bin/env bash
-
-function catch_errors() {
- echo "ERROR. That's life."
- exit 1
-}
-
-trap catch_errors ERR
-
-TMP_FILE='changelog.tmp'
-CHANGELOG_FILE='CHANGELOG.md'
-
-echo "Getting current version..."
-VERSION=`./version.js --current`
-
-echo "Generating changelog..."
-./changelog.js $VERSION $TMP_FILE
-
-cat $CHANGELOG_FILE >> $TMP_FILE
-mv -f $TMP_FILE $CHANGELOG_FILE
-
-
-echo "Updating version..."
-./version.js --remove-snapshot
-
-echo "CONFIRM TO COMMIT"
-read WHATEVER
-
-
-echo "Creating commit..."
-git commit version.yaml CHANGELOG.md -m "chore(relase): cutting the v$VERSION release"
-
-echo "Creating tag..."
-git tag "v$VERSION"
diff --git a/start-iteration.sh b/start-iteration.sh
deleted file mode 100644
index bf82478c..00000000
--- a/start-iteration.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/usr/bin/env bash
-
-./version.js --minor-bump
-VERSION=`./version.js --curent`
-git commit -a -m "chore(relase): start v$VERSION iteration"