Skip to content
This repository was archived by the owner on Feb 24, 2022. It is now read-only.

Commit cf7cc64

Browse files
Merge pull request #102 from d2dyno/patch-1
Fix copy command duplicating theme folder
2 parents 9cfcdb0 + 0e61bc3 commit cf7cc64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

root/etc/cont-init.d/50-config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ cp -pr /config/rutorrent/settings/* /app/rutorrent/conf/
2020

2121
# copy over any theme files to themes folder
2222
[[ -e /config/themes ]] && \
23-
cp -R /config/themes/ /app/rutorrent/plugins/theme/themes/
23+
cp -R /config/themes/ /app/rutorrent/plugins/theme/
2424

2525
# copy over any plugins to the plugins folder
2626
[[ -e /config/plugins ]] && \
27-
cp -R /config/plugins/ /app/rutorrent/plugins/
27+
cp -R /config/plugins/ /app/rutorrent/
2828

2929
# delete lock file if exists
3030
[[ -e /config/rtorrent/rtorrent_sess/rtorrent.lock ]] && \

0 commit comments

Comments
 (0)