projects
/
contrib
/
Conifer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f784f0d
)
Use a string comparison operator and the world is much better
author
dbs
<dbs@6d9bc8c9-1ec2-4278-b937-99fde70a366f>
Mon, 16 Mar 2009 02:04:25 +0000
(
02:04
+0000)
committer
dbs
<dbs@6d9bc8c9-1ec2-4278-b937-99fde70a366f>
Mon, 16 Mar 2009 02:04:25 +0000
(
02:04
+0000)
git-svn-id: svn://svn.open-ils.org/ILS-Contrib/conifer/trunk@187
6d9bc8c9
-1ec2-4278-b937-
99fde70a366f
tools/patch_conifer.sh
patch
|
blob
|
history
diff --git
a/tools/patch_conifer.sh
b/tools/patch_conifer.sh
index
20b3727
..
3b93383
100644
(file)
--- a/
tools/patch_conifer.sh
+++ b/
tools/patch_conifer.sh
@@
-62,7
+62,7
@@
copy_opac_skins()
for skin in $SKINS
do
rm -fr "$INSTALL_DIR"/var/web/opac/skin/"$skin"_test
- if [
$skin -eq 'default'
]
+ if [
"$skin" == "default"
]
then
cp -r "$CANONICAL_EXPORT_DIR"/Open-ILS/web/opac/skin/default "$INSTALL_DIR"/var/web/opac/skin/"$skin"_test
else