From a89d3fe960b51d6d0d2433fb76ff111c709e2fc1 Mon Sep 17 00:00:00 2001 From: Bruce Markham <219281+brucificus@users.noreply.github.com> Date: Fri, 6 Oct 2023 16:48:00 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Corrects=20Argument=20Syntax?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/jump.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jump.ps1 b/src/jump.ps1 index 5de2db7..06a32f1 100644 --- a/src/jump.ps1 +++ b/src/jump.ps1 @@ -5,5 +5,5 @@ Set-StrictMode -Version Latest # Jump to directory containing file function jump() { - Set-Location (dirname $1) + Set-Location (dirname $args[0]) }