aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rwxr-xr-xinstall.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 89a72a1..aab745f 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@ No JavaScript is used, but there is a global CSS stylesheet.
The `sys` directory contains the filesystem structure to copy to the rootfs.
This repository should be cloned to `/srv/www`.
The `install.sh` script creates symlinks for configuration files to `/srv/www`
-and the cgit stylesheet, overwriting existing files.
+and copies the cgit stylesheet to the base directory, overwriting existing files.
The `uninstall.sh` script removes them again without restoring the original files.
## Required system packages
diff --git a/install.sh b/install.sh
index e913720..d71547e 100755
--- a/install.sh
+++ b/install.sh
@@ -6,4 +6,4 @@ for FILE in ${FILES}; do
ln -sf "/srv/www/sys/${FILE}" "/${FILE}"
done
-ln -sf /usr/share/webapps/cgit/cgit.css /srv/www/static/base/cgit.css
+cp -p /usr/share/webapps/cgit/cgit.css /srv/www/static/base/cgit.css