Skip to content

Commit

Permalink
f:
Browse files Browse the repository at this point in the history
  • Loading branch information
coolaj86 committed Dec 25, 2024
1 parent 5ffb8be commit ab3b445
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions pg-essentials/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ __init_pg_essentials() {
pkg_dst_cmd="$HOME/.local/bin/psql-backup"
pkg_dst="$pkg_dst_cmd"

pkg_src_cmd="$HOME/.local/opt/pg-essentials-v$WEBI_VERSION/bin/psql-backup"
pkg_src_bin="$HOME/.local/opt/pg-essentials-v$WEBI_VERSION/bin"
pkg_src_cmd="$HOME/.local/opt/pg-essentials-v$WEBI_VERSION/psql-backup"
pkg_src_bin="$HOME/.local/opt/pg-essentials-v$WEBI_VERSION"
pkg_src_dir="$HOME/.local/opt/pg-essentials-v$WEBI_VERSION"
pkg_src="$pkg_src_cmd"

Expand All @@ -37,11 +37,11 @@ __init_pg_essentials() {
cd ~/.local/opt/pg-essentials/ || return 1
for b_file in pg-*; do
rm -rf ../../bin/"${b_file}"
ln -s "../opt/pg-essentials-v$WEBI_VERSION/bin/${b_file}" .
ln -s "../opt/pg-essentials-v$WEBI_VERSION/${b_file}" ../../bin/
done
for b_file in psql-*; do
rm -rf ../../bin/"${b_file}"
ln -s "../opt/pg-essentials-v$WEBI_VERSION/bin/${b_file}" .
ln -s "../opt/pg-essentials-v$WEBI_VERSION/${b_file}" ../../bin/
done
)
}
Expand Down
4 changes: 2 additions & 2 deletions pg-essentials/releases.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
let Releases = module.exports;

let GitHubSource = require('../_common/github-source.js');
let owner = 'BeyondCodeBootcamp';
let repo = 'aliasman';
let owner = 'bnnanet';
let repo = 'pg-essentials';

Releases.latest = async function () {
let all = await GitHubSource.getDistributables({ owner, repo });
Expand Down

0 comments on commit ab3b445

Please sign in to comment.