Skip to content

Commit

Permalink
make move v2 as default in the move cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
beer-1 committed Nov 22, 2024
1 parent a58daf9 commit 30afbf5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/move/move.go
Original file line number Diff line number Diff line change
Expand Up @@ -578,8 +578,8 @@ the 'tests' directory`)
cmd.Flags().Bool(flagVerbose, false, "Print additional diagnostics if available")
cmd.Flags().Bool(flagSkipFetchLatestGitDeps, false, "Skip fetching latest git dependencies")
cmd.Flags().Uint32(flagBytecodeVersion, 0, "Specify the version of the bytecode the compiler is going to emit")
cmd.Flags().String(flagCompilerVersion, "1", "Specify the version of the compiler to use")
cmd.Flags().String(flagLanguageVersion, "1", "Specify the version of the language to use")
cmd.Flags().String(flagCompilerVersion, "2", "Specify the version of the compiler to use")
cmd.Flags().String(flagLanguageVersion, "2", "Specify the version of the language to use")
cmd.Flags().String(flagNamedAddresses, "", "Named addresses to use in compilation. ex: --named-addresses 'name_1=0x1,name_2=0x2'")
}

Expand Down

0 comments on commit 30afbf5

Please sign in to comment.