Skip to content

Commit ff1b0d0

Browse files
committed
Remove unecessary arg
1 parent 1cdf3f3 commit ff1b0d0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

envbuilder.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,7 @@ func Run(ctx context.Context, options OptionsMap, fs billy.Filesystem, logger Lo
723723
// exec systemd as the init command, but that doesn't mean we should
724724
// run the lifecycle scripts as root.
725725
os.Setenv("HOME", userInfo.user.HomeDir)
726-
if err := execLifecycleScripts(ctx, options, fs, logger, scripts, skippedRebuild, userInfo); err != nil {
726+
if err := execLifecycleScripts(ctx, options, logger, scripts, skippedRebuild, userInfo); err != nil {
727727
return err
728728
}
729729

@@ -921,7 +921,6 @@ func execOneLifecycleScript(
921921
func execLifecycleScripts(
922922
ctx context.Context,
923923
options OptionsMap,
924-
fs billy.Filesystem,
925924
logger Logger,
926925
scripts devcontainer.LifecycleScripts,
927926
skippedRebuild bool,

0 commit comments

Comments
 (0)