Skip to content

Commit 27d9186

Browse files
committed
fix: fix relative paths
1 parent c31b3bd commit 27d9186

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ If you encounter any issues while running the script, please create an issue on
3232

3333
- Install Home Brew
3434
- Install Snap - Linux
35-
- Install Open JDK 8
3635
- Install Android Studio
3736
- Install VS Code
3837
- Install FVM

setup_flutter

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
#!/bin/bash
22

3-
source "install_homebrew"
4-
source "helpers/shell_helper"
5-
source "install_java"
6-
source "install_android_studio"
7-
source "install_fvm"
8-
source "install_vs_code"
3+
#
4+
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
5+
6+
source "$SCRIPT_DIR/install_homebrew"
7+
source "$SCRIPT_DIR/helpers/shell_helper"
8+
source "$SCRIPT_DIR/install_java"
9+
source "$SCRIPT_DIR/install_android_studio"
10+
source "$SCRIPT_DIR/install_fvm"
11+
source "$SCRIPT_DIR/install_vs_code"
12+
913

1014
# Install Homebrew
1115
check_install_homebrew

0 commit comments

Comments
 (0)