From 1422a177f37a1802de97503368316c05470e7ca1 Mon Sep 17 00:00:00 2001 From: Mateus Melchiades Date: Mon, 7 Aug 2023 13:56:06 -0300 Subject: [PATCH] fix:[#91] Sync to the correct etc directory --- core/system.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/system.go b/core/system.go index 00c22be3..98aded59 100644 --- a/core/system.go +++ b/core/system.go @@ -616,7 +616,7 @@ func (s *ABSystem) RunOperation(operation ABSystemOperation) error { // ------------------------------------------------ PrintVerbose("[Stage 8] -------- ABSystemRunOperation") - newEtc := filepath.Join(systemNew, "/etc") + newEtc := filepath.Join(systemNew, "/.system/etc") err = s.SyncEtc(newEtc) if err != nil { PrintVerbose("ABSystem.RunOperation:err(8): %s", err)