Fixing bug
This commit is contained in:
parent
40488769c6
commit
1c65ac61b2
12
README.md
Normal file
12
README.md
Normal file
@ -0,0 +1,12 @@
|
||||
# Machine Setup
|
||||
|
||||
## How to install
|
||||
|
||||
|
||||
|
||||
## TODO
|
||||
|
||||
- [ ] importing Firefox plugins
|
||||
- [ ] importing plugins
|
||||
- [ ] fixing double maintaining issue
|
||||
- [ ] make general script to call to perform whole install
|
@ -21,7 +21,7 @@ if [ "$machine" = "Mac" ]
|
||||
then
|
||||
pkg_manager='brew'
|
||||
echo "Installing brew package manager"
|
||||
bash realpath program/package_manager/brew/install_brew.sh
|
||||
bash programs/package_manager/brew/install_brew.sh
|
||||
fi
|
||||
|
||||
if [ "$machine" = "Linux" ]
|
||||
@ -31,10 +31,10 @@ fi
|
||||
|
||||
|
||||
echo "Installing ${pkg_manager} packages"
|
||||
bash program/package_manager/${pkg_manager}/packages.sh
|
||||
if [ -f program/package_manager/${pkg_manager}/others ]
|
||||
bash programs/package_manager/${pkg_manager}/packages.sh
|
||||
if [ -f programs/package_manager/${pkg_manager}/others ]
|
||||
then
|
||||
for file in program/package_manager/${pkg_manager}/others/*.sh
|
||||
for file in programs/package_manager/${pkg_manager}/others/*.sh
|
||||
do
|
||||
bash ${file}
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user