diff options
author | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-10-22 08:54:03 +0000 |
---|---|---|
committer | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-10-22 08:54:03 +0000 |
commit | 45af9ad4e3876ae572aa0476d78148f5e94800a0 (patch) | |
tree | f714acc0964b072bc0796fce892f1baed1bde1f0 | |
parent | 0f307e957f61304ed48647897e8564f5a889928a (diff) | |
download | cpt-45af9ad4e3876ae572aa0476d78148f5e94800a0.tar.gz |
kiss: fix #65
FossilOrigin-Name: 9de385df5325cccd443075c8feaa4e21e97555389d20d01f19ce380114d7883f
-rwxr-xr-x | kiss | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -497,7 +497,7 @@ pkg_build() { # Copy the repository files to the package directory. # This acts as the database entry. - cp -Rf "$repo_dir" "$pkg_dir/$pkg/$pkg_db/" + cp -LRf "$repo_dir" "$pkg_dir/$pkg/$pkg_db/" log "$pkg" "Successfully built package" |