Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
freebox-tools
Project overview
Project overview
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
Packages
Packages
Container Registry
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tools
freebox-tools
Commits
44a1fccd
Commit
44a1fccd
authored
Feb 19, 2021
by
Claude
🌴
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'add_packaging_tools' into 'master'
Add packaging tools See merge request
!38
parents
0466d137
0fa4cb38
Pipeline
#8288
passed with stage
in 6 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
0 deletions
+27
-0
.gitignore
.gitignore
+1
-0
package/make.sh
package/make.sh
+26
-0
No files found.
.gitignore
View file @
44a1fccd
...
...
@@ -2,6 +2,7 @@
*.bak
*.log
*~
.target/
/.project
/.settings/*
DISABLED.*
...
...
package/make.sh
0 → 100755
View file @
44a1fccd
#!/bin/bash
#
# freebox-tools:package/make.sh
#
set
-u
set
-o
pipefail
PROJECT_HOME
=
"
$(
dirname
"
$(
dirname
"
$(
realpath
"
${
BASH_SOURCE
[0]
}
"
)
"
)
"
)
"
declare
-gr
PROJECT_HOME
# shellcheck disable=SC1090
source
"
${
PROJECT_HOME
}
/apis/bash-common-api/bash-common-api.sh"
||
exit
$?
# shellcheck disable=SC2034
declare
-gr
TARGET_HOME
=
'.target'
# shellcheck disable=SC2034
declare
-gra
DIRECTORIES_TO_REMOVE_FROM_RELEASE
=(
'package'
)
# shellcheck disable=SC1090
source
"
${
PROJECT_HOME
}
/apis/install-api/make-package-api.sh"
||
exit
$?
cd
"
${
PROJECT_HOME
}
"
||
exit
$?
make_main
"
$@
"
||
exit
$?
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