Skip to content

Commit 3022cf3

Browse files
committed
Fix CI
1 parent f537a4e commit 3022cf3

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

.github/workflows/no-response.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,5 @@ jobs:
1717
daysUntilClose: 30
1818
responseRequiredLabel: waiting-for-response
1919
closeComment: >
20-
This issue has been automatically closed due to inactivity. If you feel
21-
this is still relevant, please comment here or create a fresh issue.
20+
This issue has been automatically closed due to inactivity. If you feel this is still relevant, please comment here or create a fresh issue.
2221

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Added
1313

14-
- Nushell: add support for v0.86.0.
14+
- Nushell: support for v0.86.0.
1515

1616
## [0.9.2] - 2023-08-04
1717

@@ -28,7 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2828
### Added
2929

3030
- Fish/Zsh: aliases on `__zoxide_z` will now use completions.
31-
- Nushell: add support for v0.78.0.
31+
- Nushell: support for v0.78.0.
3232
- Fish: plugin now works on older versions.
3333
- PowerShell: warn when PowerShell version is too old for `z -` and `z +`.
3434
- PowerShell: support for PWD hooks on all versions.

shell.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
let
22
pkgs = import (builtins.fetchTarball
3-
"https://github.com/NixOS/nixpkgs/archive/22a6958f46fd8e14830d02856ff63b1d0e5cc3e4.tar.gz") {
3+
"https://github.com/NixOS/nixpkgs/archive/4d513ab5f170d66afa3387bdd718d41aa936ee9f.tar.gz") {
44
overlays = [ rust ];
55
};
66
rust = import (builtins.fetchTarball

templates/xonsh.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def __zoxide_pwd() -> str:
3838
{%- else %}
3939
pwd = __zoxide_env().get("PWD")
4040
if pwd is None:
41-
raise Exception("$PWD not found")
41+
raise RuntimeError("$PWD not found")
4242
{%- endif %}
4343
return pwd
4444

@@ -53,7 +53,7 @@ def __zoxide_cd(path: typing.Optional[typing.AnyStr] = None) -> None:
5353
args = [path]
5454
_, exc, _ = xonsh.dirstack.cd(args)
5555
if exc is not None:
56-
raise Exception(exc)
56+
raise RuntimeError(exc)
5757
{%- if echo %}
5858
print(__zoxide_pwd())
5959
{%- endif %}

0 commit comments

Comments
 (0)