Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
9fc52c8a
Commit
9fc52c8a
authored
Jul 28, 2014
by
Daniel Smith
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #673 from brendandburns/fix
Bail out and print error, if release.sh fails.
parents
31a78c3e
d898fb46
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
dev-build-and-push.sh
hack/dev-build-and-push.sh
+4
-0
dev-build-and-up.sh
hack/dev-build-and-up.sh
+4
-0
No files found.
hack/dev-build-and-push.sh
View file @
9fc52c8a
...
@@ -18,6 +18,10 @@
...
@@ -18,6 +18,10 @@
# First build a release
# First build a release
$(
dirname
$0
)
/../release/release.sh
$(
dirname
$0
)
/../release/release.sh
if
[
"
$?
"
!=
"0"
]
;
then
echo
"Building a release failed!"
exit
1
fi
# Now push this out to the cluster
# Now push this out to the cluster
$(
dirname
$0
)
/../cluster/kube-push.sh
$(
dirname
$0
)
/../cluster/kube-push.sh
hack/dev-build-and-up.sh
View file @
9fc52c8a
...
@@ -19,6 +19,10 @@
...
@@ -19,6 +19,10 @@
# First build a release
# First build a release
$(
dirname
$0
)
/../release/release.sh
$(
dirname
$0
)
/../release/release.sh
if
[
"
$?
"
!=
"0"
]
;
then
echo
"Building the release failed!"
exit
1
fi
# Now bring a new cluster up with that release.
# Now bring a new cluster up with that release.
$(
dirname
$0
)
/../cluster/kube-up.sh
$(
dirname
$0
)
/../cluster/kube-up.sh
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