-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Put override of POLYMER_PATH before importing pull-all
- Loading branch information
Showing
1 changed file
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
#!/bin/bash | ||
|
||
# ssh auth, easier to script | ||
POLYMER_PATH="[email protected]:Polymer" | ||
|
||
# import functions from pull-all, must be in same folder as make-release | ||
. "`dirname $0`/pull-all.sh" | ||
|
||
|
@@ -22,9 +26,6 @@ done | |
## make sure to update polymer/package.json to reflect this value | ||
VERSION=`date "+v0.0.%Y%m%d"` | ||
|
||
# ssh auth, easier to script | ||
POLYMER_PATH="[email protected]:Polymer" | ||
|
||
tag_repos() { | ||
FAILED=() | ||
for REPO in "${REPOS[@]}"; do | ||
|