corrected the path confusion going on in the configure fresh system scripts
This commit is contained in:
parent
69d693f95e
commit
1db187966e
2 changed files with 5 additions and 2 deletions
|
@ -7,7 +7,8 @@ sudo true
|
||||||
chsh -s `which zsh` $USER
|
chsh -s `which zsh` $USER
|
||||||
|
|
||||||
#submodules
|
#submodules
|
||||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
DIR=`realpath $DIR`
|
||||||
|
echo "using $DIR as the top level directory"
|
||||||
cd $DIR
|
cd $DIR
|
||||||
git submodule init
|
git submodule init
|
||||||
git submodule update --recursive
|
git submodule update --recursive
|
||||||
|
|
|
@ -7,5 +7,7 @@ sudo yum install http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree
|
||||||
sudo yum install vim tmux atop zsh thunderbird thunderbird-enigmail thunderbird-lightning firefox aria2 gajim lm_sensors vlc freecad python3-pip qt5-qtbase-devel qt5-qtwebkit-devel meld whois curl pv pixz tor torsocks nodejs npm terminator gsmartcontrol python-pip mesa-utils mesa-utils-extra aptitude p7zip-full p7zip-rar mercurial
|
sudo yum install vim tmux atop zsh thunderbird thunderbird-enigmail thunderbird-lightning firefox aria2 gajim lm_sensors vlc freecad python3-pip qt5-qtbase-devel qt5-qtwebkit-devel meld whois curl pv pixz tor torsocks nodejs npm terminator gsmartcontrol python-pip mesa-utils mesa-utils-extra aptitude p7zip-full p7zip-rar mercurial
|
||||||
|
|
||||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
$DIR/install_common.sh
|
DIR="$DIR/../"
|
||||||
|
echo "using $DIR"
|
||||||
|
DIR="$DIR" $DIR/common/configure_fresh_system
|
||||||
|
|
Loading…
Reference in a new issue