slight formatting change
diff --git a/scripts/merge_e4_into_ui.txt b/scripts/merge_e4_into_ui.txt
index 8a830c2..0365004 100644
--- a/scripts/merge_e4_into_ui.txt
+++ b/scripts/merge_e4_into_ui.txt
@@ -3,16 +3,16 @@
# in this merge, we simply pull both repos together and then
# merge them onto head
- cd eclipse.platform.ui
- git tag | sort -u >../tags_ui.txt
+cd eclipse.platform.ui
+git tag | sort -u >../tags_ui.txt
cd ../eclipse.platform.ui.e4/
- git tag | sort -u >../tags_e4.txt
+git tag | sort -u >../tags_e4.txt
cd ..
comm -12 tags_ui.txt tags_e4.txt >common_tags.txt
- cd eclipse.platform.ui
- git branch -r | sort -u >../branch_ui.txt
- cd ../eclipse.platform.ui.e4/
- git branch -r | sort -u >../branch_e4.txt
+cd eclipse.platform.ui
+git branch -r | sort -u >../branch_ui.txt
+cd ../eclipse.platform.ui.e4/
+git branch -r | sort -u >../branch_e4.txt
cd ..
comm -12 branch_ui.txt branch_e4.txt >common_branches.txt