Skip to content

Commit d763b08

Browse files
authored
Merge pull request #2295 from fox-forks/hyperupcall-completion-shellcheck
Fix formatting
2 parents fd12c4a + 70a2b8e commit d763b08

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

aliases/available/general.aliases.bash

+5-6
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ alias _='sudo'
2020
alias vbrc='${VISUAL:-vim} ~/.bashrc'
2121
alias vbpf='${VISUAL:-vim} ~/.bash_profile'
2222

23-
2423
# colored grep
2524
# Need to check an existing file for a pattern that will be found to ensure
2625
# that the check works when on an OS that supports the color option
@@ -51,11 +50,11 @@ alias ipy='ipython'
5150

5251
alias piano='pianobar'
5352

54-
alias ..='cd ..' # Go up one directory
55-
alias cd..='cd ..' # Common misspelling for going up one directory
56-
alias ...='cd ../..' # Go up two directories
57-
alias ....='cd ../../..' # Go up three directories
58-
alias -- -='cd -' # Go back
53+
alias ..='cd ..' # Go up one directory
54+
alias cd..='cd ..' # Common misspelling for going up one directory
55+
alias ...='cd ../..' # Go up two directories
56+
alias ....='cd ../../..' # Go up three directories
57+
alias -- -='cd -' # Go back
5958
alias dow='cd /home/$USER/Downloads' # Go to the Downloads directory
6059

6160
# Shell History

completion/available/gradle.completion.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ __gradle-set-build-file() {
4848

4949
__gradle-set-cache-name() {
5050
# Cache name is constructed from the absolute path of the build file.
51-
cache_name=${gradle_build_file//'/'/_}
51+
cache_name=${gradle_build_file//"/"/_}
5252
}
5353

5454
__gradle-set-files-checksum() {

0 commit comments

Comments
 (0)