From d0ab3f87bc326cc83ca857bdde8d580f56de840e Mon Sep 17 00:00:00 2001 From: Igor Kislyuk Date: Tue, 6 Jun 2017 11:23:34 +0300 Subject: [PATCH] Remove. lazy_ass.sh --- README.md | 10 +--------- lazy_ass.sh | 23 ----------------------- 2 files changed, 1 insertion(+), 32 deletions(-) delete mode 100755 lazy_ass.sh diff --git a/README.md b/README.md index 01ab20c..db7df34 100644 --- a/README.md +++ b/README.md @@ -1,9 +1 @@ -# Podspecs - -To push new spec use: -./lazy_ass.sh [POD_NAME] [POD_VERSION] [PATH_TO_PODSPEC] - -Example: -./lazy_ass.sh LeadKit 0.4.6 ~/Projects/LeadKit/LeadKit.podspec - -Don't forget to create new pull request! \ No newline at end of file +# TouchInstinct Podspecs diff --git a/lazy_ass.sh b/lazy_ass.sh deleted file mode 100755 index aa75505..0000000 --- a/lazy_ass.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh - -pod=$1 -version=$2 -podspec_path=$3 - -new_version_dir="$pod/$version/" - -mkdir $new_version_dir - -cp $podspec_path $new_version_dir - -branch="$pod/$version" - -git branch $branch - -git checkout $branch - -git add $new_version_dir - -git commit -m "[Update] $pod ($version)" - -git push origin $branch \ No newline at end of file