Skip to content

Commit

Permalink
Fix: Append "/" in rsync command
Browse files Browse the repository at this point in the history
  • Loading branch information
matbme committed Aug 10, 2023
1 parent c7edd18 commit 764e902
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/system.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ func (s *ABSystem) SyncEtc(newEtc string) error {
"--exclude=subgid",
"--exclude=fstab",
"--exclude=crypttab",
etcDir,
etcDir+"/",
newEtc,
).Run()
if err != nil {
Expand Down

0 comments on commit 764e902

Please sign in to comment.