Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
alpine
abuild
Commits
35077b43
Commit
35077b43
authored
Aug 20, 2016
by
Jakub Jirutka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
replace deprecated `...` syntax with $(...) in shell scripts
parent
81c88882
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
7 deletions
+7
-7
abuild-keygen.in
abuild-keygen.in
+1
-1
abuild-sign.in
abuild-sign.in
+1
-1
abump.in
abump.in
+2
-2
apkgrel.in
apkgrel.in
+2
-2
bootchartd
bootchartd
+1
-1
No files found.
abuild-keygen.in
View file @
35077b43
...
...
@@ -107,7 +107,7 @@ install_pubkey=
non_interactive
=
quiet
=
args
=
`
getopt
-o
ainqh
--long
append,install,quiet,help
-n
"
$program
"
--
"
$@
"
`
args
=
$(
getopt
-o
ainqh
--long
append,install,quiet,help
-n
"
$program
"
--
"
$@
"
)
if
[
$?
-ne
0
]
;
then
usage
exit
2
...
...
abuild-sign.in
View file @
35077b43
...
...
@@ -63,7 +63,7 @@ privkey="$PACKAGER_PRIVKEY"
pubkey
=
quiet
=
args
=
`
getopt
-o
ek:p:qh
--long
installed,private:,public:,quiet,help
-n
"
$program
"
--
"
$@
"
`
args
=
$(
getopt
-o
ek:p:qh
--long
installed,private:,public:,quiet,help
-n
"
$program
"
--
"
$@
"
)
if
[
$?
-ne
0
]
;
then
usage
exit
2
...
...
abump.in
View file @
35077b43
...
...
@@ -108,8 +108,8 @@ fixes=
[
-n
"
$APORTSDIR
"
]
||
error
"can't locate
\$
APORTSDIR"
git rev-parse 2>/dev/null
||
die
"not in a git tree"
args
=
`
getopt
-o
f:s:Rkqh
--long
fixes:,security:,recursive,keep,quiet,help
\
-n
"
$program
"
--
"
$@
"
`
args
=
$(
getopt
-o
f:s:Rkqh
--long
fixes:,security:,recursive,keep,quiet,help
\
-n
"
$program
"
--
"
$@
"
)
if
[
$?
-ne
0
]
;
then
usage
exit
2
...
...
apkgrel.in
View file @
35077b43
...
...
@@ -95,8 +95,8 @@ force=
setto
=
only_clean_git
=
args
=
`
getopt
-o
zags:tfqh
--long
zero,add,clean-git,set:,test,force,quiet,help
\
-n
"
$program
"
--
"
$@
"
`
args
=
$(
getopt
-o
zags:tfqh
--long
zero,add,clean-git,set:,test,force,quiet,help
\
-n
"
$program
"
--
"
$@
"
)
if
[
$?
-ne
0
]
;
then
usage
exit
2
...
...
bootchartd
View file @
35077b43
...
...
@@ -178,7 +178,7 @@ stop-initfs)
cd
"
$LOGDIR
"
mkdir
"
$NEWROOT$LOGDIR
"
cp
/sbin/bootchartd
$NEWROOT
/sbin
PID
=
`
cat
bootchart.pid
`
PID
=
$(
cat
bootchart.pid
)
kill
-USR2
$PID
wait
$PID
mv
*
"
$NEWROOT$LOGDIR
"
...
...
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