diff options
| author | emmett1 <emmett1.2miligrams@protonmail.com> | 2025-03-04 08:02:16 +0800 |
|---|---|---|
| committer | emmett1 <emmett1.2miligrams@protonmail.com> | 2025-03-04 08:02:16 +0800 |
| commit | 2826ed41fcb5a127d2dd6028c4566e5a2220cb4a (patch) | |
| tree | cdf7ff7df0ddd7773973c6734a3d74ab95534e9d | |
| parent | 84e4ce29dfb473c043a730effa2088b09e3a0a89 (diff) | |
| download | spm-2826ed41fcb5a127d2dd6028c4566e5a2220cb4a.tar.gz spm-2826ed41fcb5a127d2dd6028c4566e5a2220cb4a.zip | |
fix lock file message
| -rwxr-xr-x | spm | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -20,7 +20,7 @@ spm_build() { if [ -f "/tmp/spmpackage.lock" ]; then msg "Theres existing packaging process running..." - msg "remove '$SPMDIR/package.lock' if theres no packaging process running." + msg "remove '/tmp/spmpackage.lock' if theres no packaging process running." fi while [ -f "/tmp/spmpackage.lock" ]; do count=$((count+1)) @@ -87,7 +87,7 @@ spm_install() { if [ -f "/tmp/spminstall.lock" ]; then msg "Theres existing install process running..." - msg "remove '$SPMDIR/install.lock' if theres no install process running." + msg "remove '/tmp/spminstall.lock' if theres no install process running." fi while [ -f "/tmp/spminstall.lock" ]; do count=$((count+1)) |