Skip to content

Commit

Permalink
fix(CLI): Fix build output argument and huggingface integration (#886)
Browse files Browse the repository at this point in the history
fix: Fix build output argument and huggingface integration

Signed-off-by: Ce Gao <cegao@tensorchord.ai>

Signed-off-by: Ce Gao <cegao@tensorchord.ai>
  • Loading branch information
gaocegege committed Sep 14, 2022
1 parent 2e8b5d5 commit 128f866
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/app/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ func ParseBuildOpt(clicontext *cli.Context) (builder.Options, error) {
if err != nil {
return builder.Options{}, err
}
output := ""
output := clicontext.String("output")
exportCache := clicontext.String("export-cache")
importCache := clicontext.String("import-cache")
useProxy := clicontext.Bool("use-proxy")
Expand Down
2 changes: 1 addition & 1 deletion pkg/lang/frontend/starlark/data/const.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ package data

const (
ruleEnvdManagedDataSource = "data.envd"
huggingFaceDatasetPath = "~/.cache/huggingface/datasets"
huggingFaceDatasetPath = "~/.cache/huggingface"
dglFaceDatasetPath = "~/.dgl"
)

0 comments on commit 128f866

Please sign in to comment.