Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Beta v6.24.1 #2821

Merged
merged 2 commits into from
May 18, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .meta/dietpi-survey_report
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,17 @@
aSOFTWARE_NAME6_23[174]='GIMP'
aSOFTWARE_NAME6_23[175]='XFCE Power Manager'

# - v6.24 + v6.25
aSOFTWARE_NAME6_24=()
aSOFTWARE_NAME6_25=()
for i in ${!aSOFTWARE_NAME6_23[@]}
do

aSOFTWARE_NAME6_24[$i]=${aSOFTWARE_NAME6_23[$i]}
aSOFTWARE_NAME6_25[$i]=${aSOFTWARE_NAME6_24[$i]}

done

Main(){

# Copy files to RAM to speed up grep
Expand Down
2 changes: 1 addition & 1 deletion dietpi/func/dietpi-globals
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ $(ps f -eo pid,user,tty,cmd | grep -i '[d]ietpi')"; then
#-----------------------------------------------------------------------------------
# DietPi scripts, moved from /etc/bash.bashrc
# - sudo command that ensures DietPi-Globals with G_* commands are loaded
G_SUDO(){ sudo -s . /DietPi/dietpi/func/dietpi-globals && "$@"; }
G_SUDO(){ local input=$@; sudo bash -c ". /DietPi/dietpi/func/dietpi-globals && $input"; }
# - sudo alias that allows running other aliases with "sudo"
alias sudo='sudo ' # https://github.com/MichaIng/DietPi/issues/424

Expand Down