Skip to content
This repository was archived by the owner on Oct 1, 2020. It is now read-only.

Commit 98b7caf

Browse files
authored
Merge pull request #75 from paliarush/Unversioned-Files-After-Ee-Linking
Unversioned files after ee linking
2 parents ab92df6 + 9d9c34c commit 98b7caf

File tree

5 files changed

+17
-11
lines changed

5 files changed

+17
-11
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1212

1313
### Changed
1414

15+
- After EE is linked, EE versions of composer.lock and composer.json are replaced back with CE versions (thus are not marked by git as modified)
16+
1517
### Fixed
1618

19+
- Fixed issue with some files marked as unversioned in git after EE linking
1720
- It is now possible to use spaces in path to vagrant project on Windows. On OSX and Linux hosts it works in non-NFS mode, in NFS mode it does not work because of [bug in vagrant](mitchellh/vagrant#7540)
1821
- Fixed issue with MySQL being down after VM power off
1922

etc/config.yaml.dist

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
repository_url:
2-
# [To apply changes: init-project -fc]
2+
# [To apply changes: init_project.sh -fc]
33
# git@github.com:magento/magento2ce.git OR custom one
44
ce: "git@github.com:magento/magento2.git"
55
# git@github.com:magento/magento2ee.git OR custom one
@@ -9,7 +9,7 @@ repository_url:
99
# git@github.com:magento/magento2-sample-data-ee.git OR custom one
1010
ee_sample_data: ""
1111
guest:
12-
# [To apply changes: init-project -f]
12+
# [To apply changes: init_project.sh -f]
1313
# NFS will be used for folder synchronization on *nix and OSX hosts by default.
1414
use_nfs: 1
1515
# Default is 2Gb, around 3Gb is necessary to run functional tests.
@@ -30,7 +30,7 @@ environment:
3030
magento:
3131
# [To apply changes: m-switch-to-ce -f OR m-switch-to-ee -f]
3232
install_sample_data: 0
33-
# [To apply changes: init-project -f]
33+
# [To apply changes: init_project.sh -f]
3434
host_name: "magento2.vagrant2"
3535
# [To apply changes: m-reinstall]
3636
admin_frontname: "admin"

m-switch-to-ce

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@ else
3131
exit 0
3232
fi
3333

34-
${php_executable} -f ${magento_ee_dir}/dev/tools/build-ee.php -- --command=unlink --ee-source="${magento_ee_dir}" --ce-source="${magento_ce_dir}"
34+
${php_executable} -f ${magento_ee_dir}/dev/tools/build-ee.php -- --command=unlink --ee-source="${magento_ee_dir}" --ce-source="${magento_ce_dir}" --exclude=true
3535

36+
# TODO: Remove after some time. For now this is left for backward compatibility
3637
cd ${magento_ce_dir}
3738
git checkout composer.json
3839
git checkout composer.lock

m-switch-to-ee

+4-2
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,8 @@ else
3131
exit 0
3232
fi
3333

34-
${php_executable} -f ${magento_ee_dir}/dev/tools/build-ee.php -- --command=link --ee-source="${magento_ee_dir}" --ce-source="${magento_ce_dir}"
34+
${php_executable} -f ${magento_ee_dir}/dev/tools/build-ee.php -- --command=link --ee-source="${magento_ee_dir}" --ce-source="${magento_ce_dir}" --exclude=true
3535

36-
cp ${magento_ee_dir}/composer.json ${magento_ce_dir}/composer.json
3736
cp ${magento_ee_dir}/composer.lock ${magento_ce_dir}/composer.lock
3837

3938
if [[ ${host_os} == "Windows" ]] || [[ $(bash "${vagrant_dir}/scripts/get_config_value.sh" "guest_use_nfs") == 0 ]]; then
@@ -55,6 +54,9 @@ bash "${vagrant_dir}/scripts/host/relink_sample_data.sh"
5554
bash "${vagrant_dir}/m-clear-cache"
5655
bash "${vagrant_dir}/m-composer" install
5756

57+
cd ${magento_ce_dir}
58+
git checkout composer.lock
59+
5860
echo "Magento installation..."
5961
if [[ ${host_os} == "Windows" ]] || [[ $(bash "${vagrant_dir}/scripts/get_config_value.sh" "guest_use_nfs") == 0 ]]; then
6062
read -p "Wait while Magento2 code is uploaded in PhpStorm and press any key to continue..." -n1 -s

scripts/host/relink_sample_data.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,21 @@ fi
1919

2020
# As a precondition, disable CE sample data
2121
if [[ -f "${magento_ce_sample_data_dir}/dev/tools/build-sample-data.php" ]]; then
22-
${php_executable} -f "${magento_ce_sample_data_dir}/dev/tools/build-sample-data.php" -- --command=unlink --ce-source="${magento_ce_dir}" --sample-data-source="${magento_ce_sample_data_dir}"
22+
${php_executable} -f "${magento_ce_sample_data_dir}/dev/tools/build-sample-data.php" -- --command=unlink --ce-source="${magento_ce_dir}" --sample-data-source="${magento_ce_sample_data_dir}" --exclude=true
2323
set +x
2424
echo "CE Sample data disabled"
2525
set -x
2626
fi
2727
# As a precondition, disable EE sample data
2828
if [[ -f "${magento_ee_sample_data_dir}/dev/tools/build-sample-data.php" ]]; then
29-
"${php_executable}" -f "${magento_ee_sample_data_dir}/dev/tools/build-sample-data.php" -- --command=unlink --ce-source="${magento_ce_dir}" --sample-data-source="${magento_ee_sample_data_dir}"
29+
"${php_executable}" -f "${magento_ee_sample_data_dir}/dev/tools/build-sample-data.php" -- --command=unlink --ce-source="${magento_ce_dir}" --sample-data-source="${magento_ee_sample_data_dir}" --exclude=true
3030
set +x
3131
echo "EE Sample data disabled"
3232
set -x
3333
fi
3434

3535
if [[ ${install_ee} -eq 1 ]]; then
36-
"${php_executable}" -f "${magento_ee_dir}/dev/tools/build-ee.php" -- --command=link --ee-source="${magento_ee_dir}" --ce-source="${magento_ce_dir}"
36+
"${php_executable}" -f "${magento_ee_dir}/dev/tools/build-ee.php" -- --command=link --ee-source="${magento_ee_dir}" --ce-source="${magento_ce_dir}" --exclude=true
3737
fi
3838

3939
if [[ ${install_sample_data} -eq 1 ]]; then
@@ -49,7 +49,7 @@ if [[ ${install_sample_data} -eq 1 ]]; then
4949
set +x
5050
echo "CE Sample data enabled"
5151
set -x
52-
"${php_executable}" -f "${magento_ce_sample_data_dir}/dev/tools/build-sample-data.php" -- --command=link --ce-source="${magento_ce_dir}" --sample-data-source="${magento_ce_sample_data_dir}"
52+
"${php_executable}" -f "${magento_ce_sample_data_dir}/dev/tools/build-sample-data.php" -- --command=link --ce-source="${magento_ce_dir}" --sample-data-source="${magento_ce_sample_data_dir}" --exclude=true
5353
fi
5454

5555
if [[ ${install_ee} -eq 1 ]]; then
@@ -65,7 +65,7 @@ if [[ ${install_sample_data} -eq 1 ]]; then
6565
set +x
6666
echo "EE Sample data enabled"
6767
set -x
68-
"${php_executable}" -f "${magento_ee_sample_data_dir}/dev/tools/build-sample-data.php" -- --command=link --ce-source="${magento_ce_dir}" --sample-data-source="${magento_ee_sample_data_dir}"
68+
"${php_executable}" -f "${magento_ee_sample_data_dir}/dev/tools/build-sample-data.php" -- --command=link --ce-source="${magento_ce_dir}" --sample-data-source="${magento_ee_sample_data_dir}" --exclude=true
6969
fi
7070
fi
7171
fi

0 commit comments

Comments
 (0)