Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
Rocket.Chat
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RocketChat
Rocket.Chat
Commits
3fe5aa10
Unverified
Commit
3fe5aa10
authored
8 years ago
by
Gabriel Engel
Browse files
Options
Downloads
Patches
Plain Diff
Added debug to build scripts
parent
acf9cba6
No related branches found
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.travis/docker.sh
+1
-0
1 addition, 0 deletions
.travis/docker.sh
.travis/snap.sh
+3
-0
3 additions, 0 deletions
.travis/snap.sh
example-build.sh
+1
-0
1 addition, 0 deletions
example-build.sh
install.sh
+1
-0
1 addition, 0 deletions
install.sh
publish_packages.sh
+6
-1
6 additions, 1 deletion
publish_packages.sh
with
12 additions
and
1 deletion
.travis/docker.sh
+
1
−
0
View file @
3fe5aa10
#!/bin/bash
set
-x
set
-euvo
pipefail
IFS
=
$'
\n\t
'
...
...
This diff is collapsed.
Click to expand it.
.travis/snap.sh
+
3
−
0
View file @
3fe5aa10
#!/bin/bash
set
-x
set
-euvo
pipefail
IFS
=
$'
\n\t
'
if
[
-z
"
$SNAPCRAFT_SECRET
"
]
;
then
exit
0
...
...
This diff is collapsed.
Click to expand it.
example-build.sh
+
1
−
0
View file @
3fe5aa10
#!/bin/bash
set
-x
set
-euvo
pipefail
IFS
=
$'
\n\t
'
export
METEOR_SETTINGS
=
$(
cat
settings.json
)
export
NODE_ENV
=
production
...
...
This diff is collapsed.
Click to expand it.
install.sh
+
1
−
0
View file @
3fe5aa10
#!/bin/bash
set
-x
set
-euvo
pipefail
IFS
=
$'
\n\t
'
ROOTPATH
=
/var/www/rocket.chat
PM2FILE
=
pm2.json
...
...
This diff is collapsed.
Click to expand it.
publish_packages.sh
+
6
−
1
View file @
3fe5aa10
#!/bin/bash
set
-x
set
-euvo
pipefail
IFS
=
$'
\n\t
'
for
d
in
packages/
*
;
do
echo
"
$d
"
cd
$d
meteor publish
cd
../../
done
\ No newline at end of file
done
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment