some typo fixed
This commit is contained in:
parent
ce1bcfeec4
commit
04d36a791f
|
@ -68,7 +68,7 @@ or
|
|||
when no options are given, the installer script will use the default path,
|
||||
the uninstaller script and others will detect your custom path so there is no problem,
|
||||
I recommend using the `-d` option and having the default cache directory.
|
||||
this feature is currently being tested, and will later be added to `setup.sh`
|
||||
this feature is currently being tested, and will be added to `setup.sh` later
|
||||
|
||||
|
||||
<div align="center" class="tip" markdown="1" style>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
source "sharedFuncs.sh"
|
||||
|
||||
function main(){
|
||||
function main() {
|
||||
|
||||
mkdir -p $SCR_PATH
|
||||
mkdir -p $CACHE_PATH
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
source "sharedFuncs.sh"
|
||||
|
||||
main(){
|
||||
main() {
|
||||
|
||||
CMD_PATH="/usr/local/bin/photoshop"
|
||||
ENTRY_PATH="/home/$USER/.local/share/applications/photoshop.desktop"
|
||||
|
@ -61,7 +61,7 @@ main(){
|
|||
}
|
||||
|
||||
#parameters [Message] [default flag [Y/N]]
|
||||
function ask_question(){
|
||||
function ask_question() {
|
||||
result=""
|
||||
if [ "$2" == "Y" ];then
|
||||
read -r -p "$1 [Y/n] " response
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
source "sharedFuncs.sh"
|
||||
|
||||
function main(){
|
||||
function main() {
|
||||
load_paths
|
||||
RESOURCES_PATH="$SCR_PATH/resources"
|
||||
WINE_PREFIX="$SCR_PATH/prefix"
|
||||
|
|
Loading…
Reference in New Issue