Skip to content

Commit

Permalink
Merge tag 'v0.7.7' of github.com:cayleygraph/cayley into HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
iddan committed Oct 15, 2019
2 parents 9c843ed + 705bb04 commit dcf764f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/cayley/command/http.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func NewHttpCmd() *cobra.Command {
cmd.Flags().Bool("init", false, "initialize the database before using it")
cmd.Flags().DurationP("timeout", "t", 30*time.Second, "elapsed time until an individual query times out")
cmd.Flags().String("assets", "", "[depreacted]")
if cmd.Flags().Lookup("assets") != nil || cmd.Flags().Lookup("assets").Value.String() == "" {
if cmd.Flags().Lookup("assets") != nil || cmd.Flags().Lookup("assets").Value.String() != "" {
clog.Errorf("The assets flag is deprecated as assets are provided as part of the binary.")
}
registerLoadFlags(cmd)
Expand Down

0 comments on commit dcf764f

Please sign in to comment.