Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tammo Jan Dijkema
dt_ctrl
Commits
28837427
Commit
28837427
authored
Feb 26, 2013
by
Michel Roelofs
Browse files
Removed obsolete release-build scripts, replaced by make rule
parent
2ed34536
Changes
2
Hide whitespace changes
Inline
Side-by-side
makeConsoleRelease
deleted
100755 → 0
View file @
2ed34536
#!/bin/bash
# Script to build a release package for the DT controller software
DIRNAME
=
$(
mktemp
-d
/tmp/ctrl_releaseXXXXXX
)
git clone
-s
.
$DIRNAME
pushd
$DIRNAME
pushd
common/utils
make
popd
pushd
common/trace
make
popd
pushd
libnova-0.13.0
./configure
make
popd
pushd
console
make
popd
popd
tar
-C
${
DIRNAME
}
/release
-zhcvf
"console_
$(
date
+%Y%m%d%H%M
)
.tar.gz"
console
makeControllerRelease
deleted
100755 → 0
View file @
2ed34536
#!/bin/bash
# Script to build a release package for the DT controller software
DIRNAME
=
$(
mktemp
-d
/tmp/ctrl_releaseXXXXXX
)
git clone
-s
.
$DIRNAME
pushd
$DIRNAME
pushd
common/utils
make
popd
pushd
common/trace
make
popd
pushd
controller
make
popd
popd
tar
-C
${
DIRNAME
}
/release
-zhcvf
"controller_
$(
date
+%Y%m%d%H%M
)
.tar.gz"
controller
Write
Preview
Supports
Markdown
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