Skip to content

Commit 487355b

Browse files
Copilotabdurriq
andcommitted
Update _lib README files to reference local path
Updated all README.md files in _lib directories to show the correct path (_lib/common-setup.sh) instead of the old path (../.common/common-setup.sh). Co-authored-by: abdurriq <[email protected]>
1 parent 447e6a5 commit 487355b

17 files changed

Lines changed: 34 additions & 34 deletions

File tree

src/anaconda/_lib/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Determines the appropriate non-root user based on the input username.
1515
**Usage:**
1616
```bash
1717
# Source the helper script
18-
source "${SCRIPT_DIR}/../.common/common-setup.sh"
18+
source "${SCRIPT_DIR}/_lib/common-setup.sh"
1919

2020
# Determine the user
2121
USERNAME=$(determine_user_from_input "${USERNAME}" "root")
@@ -110,7 +110,7 @@ fi
110110
```bash
111111
# Source common helper functions
112112
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
113-
source "${SCRIPT_DIR}/../.common/common-setup.sh"
113+
source "${SCRIPT_DIR}/_lib/common-setup.sh"
114114

115115
# Determine the appropriate non-root user
116116
USERNAME=$(determine_user_from_input "${USERNAME}" "root")

src/common-utils/_lib/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Determines the appropriate non-root user based on the input username.
1515
**Usage:**
1616
```bash
1717
# Source the helper script
18-
source "${SCRIPT_DIR}/../.common/common-setup.sh"
18+
source "${SCRIPT_DIR}/_lib/common-setup.sh"
1919

2020
# Determine the user
2121
USERNAME=$(determine_user_from_input "${USERNAME}" "root")
@@ -110,7 +110,7 @@ fi
110110
```bash
111111
# Source common helper functions
112112
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
113-
source "${SCRIPT_DIR}/../.common/common-setup.sh"
113+
source "${SCRIPT_DIR}/_lib/common-setup.sh"
114114

115115
# Determine the appropriate non-root user
116116
USERNAME=$(determine_user_from_input "${USERNAME}" "root")

src/conda/_lib/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Determines the appropriate non-root user based on the input username.
1515
**Usage:**
1616
```bash
1717
# Source the helper script
18-
source "${SCRIPT_DIR}/../.common/common-setup.sh"
18+
source "${SCRIPT_DIR}/_lib/common-setup.sh"
1919

2020
# Determine the user
2121
USERNAME=$(determine_user_from_input "${USERNAME}" "root")
@@ -110,7 +110,7 @@ fi
110110
```bash
111111
# Source common helper functions
112112
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
113-
source "${SCRIPT_DIR}/../.common/common-setup.sh"
113+
source "${SCRIPT_DIR}/_lib/common-setup.sh"
114114

115115
# Determine the appropriate non-root user
116116
USERNAME=$(determine_user_from_input "${USERNAME}" "root")

src/desktop-lite/_lib/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Determines the appropriate non-root user based on the input username.
1515
**Usage:**
1616
```bash
1717
# Source the helper script
18-
source "${SCRIPT_DIR}/../.common/common-setup.sh"
18+
source "${SCRIPT_DIR}/_lib/common-setup.sh"
1919

2020
# Determine the user
2121
USERNAME=$(determine_user_from_input "${USERNAME}" "root")
@@ -110,7 +110,7 @@ fi
110110
```bash
111111
# Source common helper functions
112112
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
113-
source "${SCRIPT_DIR}/../.common/common-setup.sh"
113+
source "${SCRIPT_DIR}/_lib/common-setup.sh"
114114

115115
# Determine the appropriate non-root user
116116
USERNAME=$(determine_user_from_input "${USERNAME}" "root")

src/docker-in-docker/_lib/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Determines the appropriate non-root user based on the input username.
1515
**Usage:**
1616
```bash
1717
# Source the helper script
18-
source "${SCRIPT_DIR}/../.common/common-setup.sh"
18+
source "${SCRIPT_DIR}/_lib/common-setup.sh"
1919

2020
# Determine the user
2121
USERNAME=$(determine_user_from_input "${USERNAME}" "root")
@@ -110,7 +110,7 @@ fi
110110
```bash
111111
# Source common helper functions
112112
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
113-
source "${SCRIPT_DIR}/../.common/common-setup.sh"
113+
source "${SCRIPT_DIR}/_lib/common-setup.sh"
114114

115115
# Determine the appropriate non-root user
116116
USERNAME=$(determine_user_from_input "${USERNAME}" "root")

src/docker-outside-of-docker/_lib/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Determines the appropriate non-root user based on the input username.
1515
**Usage:**
1616
```bash
1717
# Source the helper script
18-
source "${SCRIPT_DIR}/../.common/common-setup.sh"
18+
source "${SCRIPT_DIR}/_lib/common-setup.sh"
1919

2020
# Determine the user
2121
USERNAME=$(determine_user_from_input "${USERNAME}" "root")
@@ -110,7 +110,7 @@ fi
110110
```bash
111111
# Source common helper functions
112112
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
113-
source "${SCRIPT_DIR}/../.common/common-setup.sh"
113+
source "${SCRIPT_DIR}/_lib/common-setup.sh"
114114

115115
# Determine the appropriate non-root user
116116
USERNAME=$(determine_user_from_input "${USERNAME}" "root")

src/go/_lib/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Determines the appropriate non-root user based on the input username.
1515
**Usage:**
1616
```bash
1717
# Source the helper script
18-
source "${SCRIPT_DIR}/../.common/common-setup.sh"
18+
source "${SCRIPT_DIR}/_lib/common-setup.sh"
1919

2020
# Determine the user
2121
USERNAME=$(determine_user_from_input "${USERNAME}" "root")
@@ -110,7 +110,7 @@ fi
110110
```bash
111111
# Source common helper functions
112112
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
113-
source "${SCRIPT_DIR}/../.common/common-setup.sh"
113+
source "${SCRIPT_DIR}/_lib/common-setup.sh"
114114

115115
# Determine the appropriate non-root user
116116
USERNAME=$(determine_user_from_input "${USERNAME}" "root")

src/hugo/_lib/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Determines the appropriate non-root user based on the input username.
1515
**Usage:**
1616
```bash
1717
# Source the helper script
18-
source "${SCRIPT_DIR}/../.common/common-setup.sh"
18+
source "${SCRIPT_DIR}/_lib/common-setup.sh"
1919

2020
# Determine the user
2121
USERNAME=$(determine_user_from_input "${USERNAME}" "root")
@@ -110,7 +110,7 @@ fi
110110
```bash
111111
# Source common helper functions
112112
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
113-
source "${SCRIPT_DIR}/../.common/common-setup.sh"
113+
source "${SCRIPT_DIR}/_lib/common-setup.sh"
114114

115115
# Determine the appropriate non-root user
116116
USERNAME=$(determine_user_from_input "${USERNAME}" "root")

src/java/_lib/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Determines the appropriate non-root user based on the input username.
1515
**Usage:**
1616
```bash
1717
# Source the helper script
18-
source "${SCRIPT_DIR}/../.common/common-setup.sh"
18+
source "${SCRIPT_DIR}/_lib/common-setup.sh"
1919

2020
# Determine the user
2121
USERNAME=$(determine_user_from_input "${USERNAME}" "root")
@@ -110,7 +110,7 @@ fi
110110
```bash
111111
# Source common helper functions
112112
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
113-
source "${SCRIPT_DIR}/../.common/common-setup.sh"
113+
source "${SCRIPT_DIR}/_lib/common-setup.sh"
114114

115115
# Determine the appropriate non-root user
116116
USERNAME=$(determine_user_from_input "${USERNAME}" "root")

src/kubectl-helm-minikube/_lib/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Determines the appropriate non-root user based on the input username.
1515
**Usage:**
1616
```bash
1717
# Source the helper script
18-
source "${SCRIPT_DIR}/../.common/common-setup.sh"
18+
source "${SCRIPT_DIR}/_lib/common-setup.sh"
1919

2020
# Determine the user
2121
USERNAME=$(determine_user_from_input "${USERNAME}" "root")
@@ -110,7 +110,7 @@ fi
110110
```bash
111111
# Source common helper functions
112112
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
113-
source "${SCRIPT_DIR}/../.common/common-setup.sh"
113+
source "${SCRIPT_DIR}/_lib/common-setup.sh"
114114

115115
# Determine the appropriate non-root user
116116
USERNAME=$(determine_user_from_input "${USERNAME}" "root")

0 commit comments

Comments
 (0)