Skip to content

Commit f6f2aa0

Browse files
committed
Fix app folder references
1 parent e153c6d commit f6f2aa0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

admin/framework/composer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@
2626
"scripts": {
2727
"post-update-cmd": [
2828
"composer dump-autoload",
29-
"CodeIgniter\\ComposerScripts::postUpdate",
30-
"bash admin/setup.sh"
29+
"CodeIgniter\\ComposerScripts::postUpdate"
3130
]
3231
},
3332
"support": {

admin/release-appstarter

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ git checkout $branch
1212
echo -e "${BOLD}Build the framework distributable${NORMAL}"
1313

1414
echo -e "${BOLD}Copy the main files/folders...${NORMAL}"
15-
releasable='application public writable README.md contributing.md env license.txt spark'
15+
releasable='app public writable README.md contributing.md env license.txt spark'
1616
for fff in $releasable ; do
1717
if [ -d "$fff" ] ; then
1818
rm -rf $fff
@@ -23,8 +23,9 @@ done
2323
echo -e "${BOLD}Override as needed...${NORMAL}"
2424
cp -rf ${CI_DIR}/admin/starter/* .
2525

26-
echo -e "${BOLD}Fix paths...${NORMAL}"
27-
sed -i "/public $systemDirectory = 'system';/s/'system'/'vendor/codeigniter4/framework/system'/" application/Config/Paths.php
26+
############# this can only happen after composer create-project/update
27+
#echo -e "${BOLD}Fix paths...${NORMAL}"
28+
#sed -i "/public $systemDirectory = 'system';/s/'system'/'vendor/codeigniter4/framework/system'/" app/Config/Paths.php
2829

2930
#---------------------------------------------------
3031
# And finally, get ready for merging

admin/release-framework

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ git checkout $branch
1212
echo -e "${BOLD}Build the framework distributable${NORMAL}"
1313

1414
echo -e "${BOLD}Copy the main files/folders...${NORMAL}"
15-
releasable='application docs public system writable contributing.md env license.txt spark'
15+
releasable='app docs public system writable contributing.md env license.txt spark'
1616
for fff in $releasable ; do
1717
if [ -d "$fff" ] ; then
1818
rm -rf $fff

0 commit comments

Comments
 (0)