Skip to content

Commit

Permalink
Merge branch 'trunk' into cpswan-arm-runners
Browse files Browse the repository at this point in the history
  • Loading branch information
cpswan authored Jan 21, 2025
2 parents b22e738 + ff626e0 commit 02a7986
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ pubspec_overrides.yaml
.dart_tool/
.packages



# Binaries build from dart/sshnoports
packages/dart/sshnoports/bin/activate_cli
packages/dart/sshnoports/bin/at_activate
Expand All @@ -19,6 +21,9 @@ packages/dart/sshnoports/bin/sshnpd

packages/dart/sshnoports/build/

# Visual Studio
.vs/*

# Jetbrains
.idea/*

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public static AtsignStatus Status(string atsign)
{
return AtsignStatus.Activated;
}
if (exitCode == "1")
if (exitCode == "1" || exitCode == "3")
{
return AtsignStatus.NotActivated;
}
Expand Down

0 comments on commit 02a7986

Please sign in to comment.