From b0474cb984ed960e4d40f51402d21c0f455c0b0b Mon Sep 17 00:00:00 2001 From: Tobias Bosch Date: Fri, 13 Dec 2013 21:32:05 -0800 Subject: chore(build): remove stale build files --- release-commit.sh | 34 ---------------------------------- start-iteration.sh | 5 ----- 2 files changed, 39 deletions(-) delete mode 100755 release-commit.sh delete mode 100644 start-iteration.sh 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" -- cgit v1.2.3