Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
clpm
clpm
Commits
9fb13dd0
Commit
9fb13dd0
authored
Oct 07, 2021
by
Eric Timmons
Browse files
Fix install script so that subdirectories under share/ are installed
parent
cb053f51
Pipeline
#5030
failed with stages
in 9 minutes and 40 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.org
View file @
9fb13dd0
#+TITLE: CLPM Changelog
* v0.4.1 - 2021-10-07
Bug fix release, install.sh fixed so that the =share/= folder (which includes
the client) is fully installed.
* v0.4.0 - 2021-09-13
+ Changed layout of release tarballs.
...
...
install.sh
View file @
9fb13dd0
...
...
@@ -7,7 +7,7 @@ install_directory() {
find
"
$1
"
-maxdepth
1
-type
f
-exec
install
{}
"
$INSTALL_ROOT
/
$1
/"
\;
# I don't think this works with hidden directories, but we have none of
# those...
for
f
in
"
build/
$1
"
/
*
;
do
for
f
in
"
$1
"
/
*
;
do
if
[
-d
"
$f
"
]
;
then
install_directory
"
$1
/
$(
basename
"
$f
"
)
"
fi
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment