Skip to content

Commit

Permalink
Merge pull request #11 from AronMarinelli/user/aron/bitwarden-client-…
Browse files Browse the repository at this point in the history
…2024-7-2

Bump OSX/Linux clients to v2024.7.2, update docker entrypoint
  • Loading branch information
AronMarinelli authored Aug 4, 2024
2 parents 6c145b7 + ad6ded1 commit c5543fd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ namespace Bitwarden.SecureSync.Logic.Client;
public class BitwardenClientDownloadLogic : IBitwardenClientDownloadLogic
{
private const string CLIENT_VERSION_WINDOWS = "v2024.2.1";
private const string CLIENT_VERSION_OSX = "v2024.3.1";
private const string CLIENT_VERSION_LINUX = "v2024.3.1";
private const string CLIENT_VERSION_OSX = "v2024.7.2";
private const string CLIENT_VERSION_LINUX = "v2024.7.2";

private const string WINDOWS_CLIENT_URL =
"https://github.com/bitwarden/clients/releases/download/cli-v2024.2.1/bw-windows-2024.2.1.zip";

private const string LINUX_CLIENT_URL =
"https://github.com/bitwarden/clients/releases/download/cli-v2024.3.1/bw-linux-2024.3.1.zip";
"https://github.com/bitwarden/clients/releases/download/cli-v2024.7.2/bw-linux-2024.7.2.zip";

private const string OSX_CLIENT_URL =
"https://github.com/bitwarden/clients/releases/download/cli-v2024.3.1/bw-macos-2024.3.1.zip";
"https://github.com/bitwarden/clients/releases/download/cli-v2024.7.2/bw-macos-2024.7.2.zip";

private readonly DirectoryInfo _clientDownloadDirectory;
private readonly FileInfo _clientFile;
Expand Down
3 changes: 3 additions & 0 deletions docker-entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#!/bin/sh

mkdir /.cache && chmod -R 777 /.cache
chown -R ${PUID}:${PGID} /.cache

mkdir /.config && mkdir /.config/Bitwarden\ CLI
chown -R ${PUID}:${PGID} /.config/Bitwarden\ CLI

Expand Down

0 comments on commit c5543fd

Please sign in to comment.