Skip to content

Commit 3dc9a56

Browse files
committed
Relocate bridge files
1 parent c0c8203 commit 3dc9a56

File tree

8 files changed

+6
-6
lines changed

8 files changed

+6
-6
lines changed
File renamed without changes.
File renamed without changes.

cmd/ecd.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@echo off
22

33
setlocal
4-
set ewd="%~dp0..\pwsh\ewd.ps1"
4+
set ewd="%~dp0..\bridge\ewd.ps1"
55
set pwsh=powershell -NoProfile -ExecutionPolicy Unrestricted
66
for /f "usebackq tokens=*" %%i IN (`%pwsh% %ewd%`) DO set dir=%%i
77

cmd/epushd.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@echo off
22

33
setlocal
4-
set ewd="%~dp0..\pwsh\ewd.ps1"
4+
set ewd="%~dp0..\bridge\ewd.ps1"
55
set pwsh=powershell -NoProfile -ExecutionPolicy Unrestricted
66
for /f "usebackq tokens=*" %%i IN (`%pwsh% %ewd%`) DO set dir=%%i
77

pwsh/ecd.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$ewd = "$PSScriptRoot\ewd.ps1"
1+
$ewd = "$PSScriptRoot\..\bridge\ewd.ps1"
22
$path = (powershell -NoProfile -ExecutionPolicy Unrestricted $ewd)
33
$dir = [System.IO.Path]::GetDirectoryName($path)
44
$file = [System.IO.Path]::GetFileName($path)

wsl/ecd.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pwsh() {
1212

1313
ewd() {
1414
cd "$(dirname "$0")" || exit 1
15-
pwsh ../pwsh/ewd.ps1
15+
pwsh ../bridge/ewd.ps1
1616
}
1717

1818
ewd=$(ewd) || abort

wsl/eopen.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ open_editor() {
109109
open_explorer() {
110110
path=$(wslpath -aw "$1")
111111
cd "$(dirname "$0")"
112-
pwsh ../pwsh/eopen.ps1 "file://$path"
112+
pwsh ../bridge/eopen.ps1 "file://$path"
113113
}
114114

115115
open_shell() {

wsl/ewd.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pwsh() {
1111

1212
ewd() {
1313
cd "$(dirname "$0")" || exit 1
14-
pwsh ../pwsh/ewd.ps1
14+
pwsh ../bridge/ewd.ps1
1515
}
1616

1717
ewd=$(ewd) || abort

0 commit comments

Comments
 (0)