Fix/dagger edit: wrong dir Path leads to infinite loop

Signed-off-by: Guillaume de Rouville <guillaume.derouville@gmail.com>
This commit is contained in:
Guillaume de Rouville
2021-09-26 20:50:37 +02:00
parent 2249eab15d
commit a7ca7e11ba
3 changed files with 7 additions and 2 deletions

View File

@@ -34,7 +34,7 @@ var dirCmd = &cobra.Command{
// Check that directory exists
if _, err := os.Stat(p); os.IsNotExist(err) {
lg.Fatal().Err(err).Str("path", args[1]).Msg("dir doesn't exists")
lg.Fatal().Err(err).Str("path", args[1]).Msg("dir doesn't exist")
}
project := common.CurrentProject(ctx)