Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitflow
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tools
gitflow
Commits
27995bc2
Commit
27995bc2
authored
Feb 16, 2017
by
Clive Makamara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
travis
parent
d4f66964
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
.travis.yml
.travis.yml
+2
-1
package.json
package.json
+2
-2
No files found.
.travis.yml
View file @
27995bc2
sudo
:
required
language
:
node_js
env
:
-
TRAVIS=true
node_js
:
-
"
7"
-
"
6"
...
...
package.json
View file @
27995bc2
...
...
@@ -4,8 +4,8 @@
"description"
:
"Modified gitflow for dreidev"
,
"main"
:
"src/index.js"
,
"scripts"
:
{
"postinstall"
:
"curl https://raw.githubusercontent.com/dreidev/gitflow/develop/contrib/gitflow-installer.sh > gitflow-installer.sh; chmod a+x gitflow-installer.sh;
sudo bash gitflow-installer.sh install stable
"
,
"postuninstall"
:
"curl https://raw.githubusercontent.com/dreidev/gitflow/develop/contrib/gitflow-installer.sh > gitflow-installer.sh; chmod a+x gitflow-installer.sh;
sudo bash gitflow-installer.sh uninstall
"
"postinstall"
:
"curl https://raw.githubusercontent.com/dreidev/gitflow/develop/contrib/gitflow-installer.sh > gitflow-installer.sh; chmod a+x gitflow-installer.sh;
if [ -z ${TRAVIS+x} ]; then sudo bash gitflow-installer.sh install stable; else bash gitflow-installer.sh install stable;exit 0;fi
"
,
"postuninstall"
:
"curl https://raw.githubusercontent.com/dreidev/gitflow/develop/contrib/gitflow-installer.sh > gitflow-installer.sh; chmod a+x gitflow-installer.sh;
if [ -z ${TRAVIS+x} ]; then sudo bash gitflow-installer.sh uninstall; else sudo gitflow-installer.sh uninstall;exit 0;fi
"
},
"files"
:
[
"src/"
...
...
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