Skip to content

Commit

Permalink
fix pack unpack scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
BrightXiaoHan committed Sep 14, 2023
1 parent 0df6bd8 commit b8f0c4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ if [ "$MODE" = "local-install" ] || [ "$MODE" = "online-install" ]; then
elif [ "$MODE" = "unpack" ]; then
mkdir -p ~/.local/share && ln -s $DESTINATION/homecli/nvim/ ~/.local/share/nvim
source $DESTINATION/homecli/miniconda/bin/activate
conda unpack
CRYPTOGRAPHY_OPENSSL_NO_LEGACY=1 conda unpack

# Re-link broken symlinks
for file in $(find $HOME -type l ! -exec test -e {} \; -print); do
Expand Down
2 changes: 1 addition & 1 deletion scripts/pack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ echo $CURDIR
OUTFILE=${1:-homecli.tar.gz}
cd $DIR
tar -cvf $CURDIR/$OUTFILE \
HOME bin miniconda.tar.gz nodejs > /dev/null
HOME bin miniconda.tar.gz > /dev/null
rm miniconda.tar.gz
cd -

Expand Down

0 comments on commit b8f0c4a

Please sign in to comment.