Skip to content

Commit

Permalink
Merge pull request vpavlin#2 from vpavlin/feature/array-addressing
Browse files Browse the repository at this point in the history
Add the experimental option to cmd
  • Loading branch information
vpavlin authored Feb 2, 2023
2 parents d98d912 + 30855ff commit 4bbece5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cmd/mustache/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ func main() {
rootCmd.Flags().StringVar(&layoutFile, "layout", "", "location of layout file")
rootCmd.Flags().StringVar(&overrideFile, "override", "", "location of data.yml override yml")
rootCmd.Flags().BoolVar(&mustache.AllowMissingVariables, "allow-missing-variables", true, "allow missing variables")
rootCmd.Flags().BoolVar(&mustache.Experimental, "experimental", false, "allow experimental features")

if err := rootCmd.Execute(); err != nil {
os.Exit(1)
}
Expand Down

0 comments on commit 4bbece5

Please sign in to comment.