mirror of
https://github.com/YunoHost-Apps/shaarli_ynh.git
synced 2024-09-03 20:26:10 +02:00
Don't override (new) official templates with old ones (#66)
* Don't override (new) official templates with old ones Fix #65 * Change version number
This commit is contained in:
parent
5b0271a6d4
commit
bb64f6820c
2 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@
|
|||
"en": "The personal, minimalist, super-fast, no-database delicious clone",
|
||||
"fr": "Clone de delicious, rapide, simple et sans base de données."
|
||||
},
|
||||
"version": "0.12.1~ynh1",
|
||||
"version": "0.12.1~ynh2",
|
||||
"url": "https://github.com/shaarli/Shaarli",
|
||||
"license": "MIT",
|
||||
"maintainer": {
|
||||
|
|
|
@ -83,7 +83,7 @@ then
|
|||
ynh_setup_source --dest_dir="$final_path"
|
||||
|
||||
cp -a "$tmpdir/data" "$final_path/"
|
||||
cp -a "$tmpdir/tpl" "$final_path/"
|
||||
cp -a -n "$tmpdir/tpl" "$final_path/" # copy without erasing existing templates (from official source)
|
||||
|
||||
# Remove the tmp directory securely
|
||||
ynh_secure_remove --file="$tmpdir"
|
||||
|
|
Loading…
Reference in a new issue