Skip to content

Commit

Permalink
fix more regressions
Browse files Browse the repository at this point in the history
- create the ~/.local/bin folder before installing binaries
- silence errors from the nuke
  • Loading branch information
Fuseteam committed May 13, 2022
1 parent 03d2f1e commit e4ef614
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion crackle
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ APT_CACHE="apt-cache -o Dir::Cache=$APTCACHE -o Dir::State=$APTSTATE -o Dir::Etc
[[ -d "$PKG_PREFIX/lib/crackle" ]] && rm -r $PKG_PREFIX/lib/crackle;
find "$PKG_PREFIX/bin" -xtype l -exec rm {} +;
find "$PKG_PREFIX/lib" -xtype l -exec rm {} +;
find "${XDG_DATA_HOME:-$HOME/.local/share}" -xtype l -exec rm {} +;
find "${XDG_DATA_HOME:-$HOME/.local/share}" -xtype l -exec rm {} + 2> /dev/null;
sed -i '/cracklerc/d' $HOME/.bashrc
sed -i '/cracklerc/d' $HOME/.profile
find "$CRACKLECMP" -xtype l -exec rm {} +;
Expand Down
1 change: 1 addition & 0 deletions lib/triplet
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ checkro() {
}

install_rorw() {
mkdir -p $PKG_PREFIX/bin
upd $SCRP_DIR/rorw $PKG_PREFIX/bin;
upd $SCRP_DIR/arch_triplet $PKG_PREFIX/bin;
upd $SCRP_DIR/remount $PKG_PREFIX/bin;
Expand Down

0 comments on commit e4ef614

Please sign in to comment.