fix: Adds chaos flag to app/cp command
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
p4u1 2024-12-28 13:56:43 +01:00
parent 4e8995cc0e
commit b6573720ec

View File

@ -371,3 +371,13 @@ func moveFile(sourcePath, destPath string) error {
}
return nil
}
func init() {
AppCpCommand.Flags().BoolVarP(
&internal.Chaos,
"chaos",
"C",
false,
"ignore uncommitted recipes changes",
)
}