Skip to content

Commit c4d607c

Browse files
committed
chore: updated devfiles
1 parent eefeb03 commit c4d607c

5 files changed

Lines changed: 10 additions & 9 deletions

File tree

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is generated by copier and contains
22
# the answers
3-
_commit: v0.1.0-4-g9c532e1
3+
_commit: v0.1.0-2-geefeb03
44
_src_path: .
55
copyright_owner: combostrap
66
copyright_year: 2025

.envrc

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -96,12 +96,13 @@ if [ -d "$DEVF_DIR" ]; then
9696
#################
9797
# Bin
9898
#################
99-
BIN_PATH="$DEVF_DIR/bin"
100-
export PATH="$BIN_PATH:$PATH" # bin path first as it has a higher priority
101-
echo " Common Scripts Path : $BIN_PATH"
102-
BIN_PACKAGE_MANAGER_PATH="$DEVF_DIR/bin/package-manager/none"
103-
export PATH="$BIN_PACKAGE_MANAGER_PATH:$PATH" # bin path first as it has a higher priority
104-
echo " Package Manager Scripts Path : $BIN_PACKAGE_MANAGER_PATH"
99+
DEV_SCRIPT_PATH="$DEVF_DIR/dev-scripts"
100+
COMMON_SCRIPT_PATH="$DEV_SCRIPT_PATH/common"
101+
export PATH="$COMMON_SCRIPT_PATH:$PATH" # script path first as it has a higher priority
102+
echo " Common Scripts Path : $COMMON_SCRIPT_PATH"
103+
PACKAGE_MANAGER_PATH="$DEV_SCRIPT_PATH/package-manager/none"
104+
export PATH="$PACKAGE_MANAGER_PATH:$PATH" # script path first as it has a higher priority
105+
echo " Package Manager Scripts Path : $PACKAGE_MANAGER_PATH"
105106

106107
echo ""
107108
echo "Git: "

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ repos:
2424
hooks:
2525
- id: markdown-link-check
2626
name: markdown link check
27-
args: [ --quiet, "--config", ".config/markdown-lint-config.json" ]
27+
args: [ --quiet, "--config", ".config/markdown-link-check.config.json" ]
2828
- repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook
2929
rev: e46582c # v9.23.0
3030
hooks:

copier-template/.envrc.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ fi
116116
##############################
117117
ENVRCD="$PROJECT_ROOT/.envrc.d"
118118
echo ""
119-
echo "Envrc.d: "
119+
echo "Envrc.d scripts: "
120120
if [ -d ENVRCD ]; then
121121
# All file loaded in a directory should have a sh extension
122122
# This is how /etc/profile also work

0 commit comments

Comments
 (0)