Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
todomvc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Sven Franck
todomvc
Commits
7a9b5441
Commit
7a9b5441
authored
Jul 23, 2016
by
Sam Saccone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[build] use current remote and drop &&
parent
63edd693
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
test-runner.sh
test-runner.sh
+3
-3
No files found.
test-runner.sh
View file @
7a9b5441
...
...
@@ -4,9 +4,9 @@ set -e
get_changes
()
{
git remote add current https://github.com/tastejs/todomvc.git
&&
\
git fetch
--quiet
current
&&
\
git diff HEAD
origin/master
--name-only
|
awk
'BEGIN {FS = "/"}; {print $1 "/" $2 "/" $3}'
|
grep
-v
\/\/
|
grep
examples |
awk
-F
'[/]'
'{print "--framework=" $2}'
|
uniq
git remote add current https://github.com/tastejs/todomvc.git
git fetch
--quiet
current
git diff HEAD
current/master
--name-only
|
awk
'BEGIN {FS = "/"}; {print $1 "/" $2 "/" $3}'
|
grep
-v
\/\/
|
grep
examples |
awk
-F
'[/]'
'{print "--framework=" $2}'
|
uniq
}
if
[
"
$TRAVIS_BRANCH
"
=
"master"
]
&&
[
"
$TRAVIS_PULL_REQUEST
"
=
"false"
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment