Skip to content
This repository has been archived by the owner on May 29, 2024. It is now read-only.

Commit

Permalink
Don't precompile imports automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
harry-hov committed Sep 23, 2023
1 parent a0be304 commit b43c6ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/tools/precompile.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ import (

// Precompile a Gno package: gno precompile <dir>.
func Precompile(rootDir string) ([]byte, error) {
return exec.Command("gno", "precompile", filepath.Join(rootDir)).CombinedOutput()
return exec.Command("gno", "precompile", "-skip-imports", filepath.Join(rootDir)).CombinedOutput()
}

0 comments on commit b43c6ef

Please sign in to comment.