We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4063fc5 commit b6f92a8Copy full SHA for b6f92a8
internal/impl/devbox.go
@@ -270,7 +270,7 @@ func (d *Devbox) RunScript(cmdName string, cmdArgs []string) error {
270
cmdWithArgs := append([]string{cmdName}, cmdArgs...)
271
if _, ok := d.cfg.Shell.Scripts[cmdName]; ok {
272
// it's a script, so replace the command with the script file's path.
273
- cmdWithArgs = append([]string{d.scriptPath(cmdName)}, cmdArgs...)
+ cmdWithArgs = append([]string{d.scriptPath(d.scriptFilename(cmdName))}, cmdArgs...)
274
}
275
276
nixShellFilePath := filepath.Join(d.projectDir, ".devbox/gen/shell.nix")
0 commit comments