mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-01-06 21:20:31 -05:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b0748316ff | ||
|
|
8f8b4af3c9 | ||
|
|
11bf183cbb |
@@ -1,5 +1,5 @@
|
||||
#!/bin/bash
|
||||
# @version 0.10.0
|
||||
# @version 0.10.1
|
||||
|
||||
# Repository information used for downloading files and images from GitHub
|
||||
REPO_OWNER="lanedirt"
|
||||
@@ -526,13 +526,13 @@ generate_admin_password() {
|
||||
fi
|
||||
)
|
||||
fi
|
||||
HASH=$(docker run --rm installcli "$PASSWORD")
|
||||
HASH=$(docker run --rm installcli hash-password "$PASSWORD")
|
||||
if [ -z "$HASH" ]; then
|
||||
printf "${RED}> Error: Failed to generate password hash${NC}\n"
|
||||
exit 1
|
||||
fi
|
||||
else
|
||||
HASH=$(docker run --rm ${GITHUB_CONTAINER_REGISTRY}-installcli:latest "$PASSWORD")
|
||||
HASH=$(docker run --rm ${GITHUB_CONTAINER_REGISTRY}-installcli:latest hash-password "$PASSWORD")
|
||||
if [ -z "$HASH" ]; then
|
||||
printf "${RED}> Error: Failed to generate password hash${NC}\n"
|
||||
exit 1
|
||||
|
||||
@@ -30,7 +30,7 @@ public static class AppInfo
|
||||
/// <summary>
|
||||
/// Gets the patch version number.
|
||||
/// </summary>
|
||||
public const int VersionPatch = 0;
|
||||
public const int VersionPatch = 1;
|
||||
|
||||
/// <summary>
|
||||
/// Gets the build number, typically used in CI/CD pipelines.
|
||||
|
||||
Reference in New Issue
Block a user