Skip to content

Commit 4ae1f50

Browse files
fix: ignore warnings coming from git
1 parent 98bfbc5 commit 4ae1f50

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

next/sources/workspace/workspace.cram

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Workspace command transcript
22
$ cd "$TMPDIR"
33

4-
$ moon new module_a >/dev/null
5-
$ moon new module_b >/dev/null
4+
$ moon new module_a >/dev/null 2>&1
5+
$ moon new module_b >/dev/null 2>&1
66

77
$ moon work init module_a module_b
88
Created moon.work
@@ -12,7 +12,7 @@ Workspace command transcript
1212
$ grep '"./module_b"' moon.work
1313
"./module_b",
1414

15-
$ moon new module_c >/dev/null
15+
$ moon new module_c >/dev/null 2>&1
1616
$ moon work use module_c
1717
Updated moon.work
1818
$ grep '"./module_c"' moon.work

0 commit comments

Comments
 (0)