Skip to content

Commit bae6d61

Browse files
author
Philip Johansson
committed
Revert "fix(acap-build): Use '--update=none' instead of '-n'"
This reverts commit 3d4b74f.
1 parent 3d4b74f commit bae6d61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/acap-build/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ fn copy<P: AsRef<Path>, Q: AsRef<Path>>(
4646
cp.arg("--preserve=mode");
4747
}
4848

49-
cp.arg("-d").arg("--update=none").arg(src.as_os_str()).arg(dst.as_os_str());
49+
cp.arg("-dn").arg(src.as_os_str()).arg(dst.as_os_str());
5050

5151
if !cp.status()?.success() {
5252
bail!("Failed to copy symlink: {}", src.display());

0 commit comments

Comments
 (0)