ソースを参照

Makefileadaption for proper status output

master
Dirk Alders 1年前
コミット
1bb3ff65d3
6個のファイルの変更18行の追加18行の削除
  1. 3
    3
      applications/Makefile
  2. 3
    3
      clients/Makefile
  3. 3
    3
      django/Makefile
  4. 3
    3
      linux_env/Makefile
  5. 3
    3
      python_apps/Makefile
  6. 3
    3
      unittest/Makefile

+ 3
- 3
applications/Makefile ファイルの表示

@@ -1,5 +1,5 @@
1 1
 gitstatus:
2
-	@echo "\n\n\033[1;34m╔══════════════╗"
3
-	@echo               "║ applications ║"
4
-	@echo               "╚══════════════╝\033[00m"
2
+	@echo -e "\n\n\033[1;34m╔══════════════╗"
3
+	@echo -e               "║ applications ║"
4
+	@echo -e               "╚══════════════╝\033[00m"
5 5
 	@ineach "giti -s && echo -n ' - ' && pwd"

+ 3
- 3
clients/Makefile ファイルの表示

@@ -1,5 +1,5 @@
1 1
 gitstatus:
2
-	@echo "\n\n\033[1;34m╔═════════╗"
3
-	@echo               "║ clients ║"
4
-	@echo               "╚═════════╝\033[00m"
2
+	@echo -e "\n\n\033[1;34m╔═════════╗"
3
+	@echo -e               "║ clients ║"
4
+	@echo -e               "╚═════════╝\033[00m"
5 5
 	@ineach "giti -s && echo -n ' - ' && pwd"

+ 3
- 3
django/Makefile ファイルの表示

@@ -1,5 +1,5 @@
1 1
 gitstatus:
2
-	@echo "\n\n\033[1;34m╔════════╗"
3
-	@echo               "║ django ║"
4
-	@echo               "╚════════╝\033[00m"
2
+	@echo -e "\n\n\033[1;34m╔════════╗"
3
+	@echo -e               "║ django ║"
4
+	@echo -e               "╚════════╝\033[00m"
5 5
 	@ineach "giti -s && echo -n ' - ' && pwd"

+ 3
- 3
linux_env/Makefile ファイルの表示

@@ -1,5 +1,5 @@
1 1
 gitstatus:
2
-	@echo "\n\n\033[1;34m╔═══════════╗"
3
-	@echo               "║ linux_env ║"
4
-	@echo               "╚═══════════╝\033[00m"
2
+	@echo -e "\n\n\033[1;34m╔═══════════╗"
3
+	@echo -e               "║ linux_env ║"
4
+	@echo -e               "╚═══════════╝\033[00m"
5 5
 	@ineach "giti -s && echo -n ' - ' && pwd"

+ 3
- 3
python_apps/Makefile ファイルの表示

@@ -1,5 +1,5 @@
1 1
 gitstatus:
2
-	@echo "\n\n\033[1;34m╔═════════════╗"
3
-	@echo               "║ python_apps ║"
4
-	@echo               "╚═════════════╝\033[00m"
2
+	@echo -e "\n\n\033[1;34m╔═════════════╗"
3
+	@echo -e               "║ python_apps ║"
4
+	@echo -e               "╚═════════════╝\033[00m"
5 5
 	@ineach "giti -s && echo -n ' - ' && pwd"

+ 3
- 3
unittest/Makefile ファイルの表示

@@ -5,9 +5,9 @@ help:
5 5
 	@echo "Possible Maketargets: status clean gitsubup gits giti"
6 6
 
7 7
 gitstatus:
8
-	@echo "\n\n\033[1;34m╔═══════════╗"
9
-	@echo               "║ unittest  ║"
10
-	@echo               "╚═══════════╝\033[00m"
8
+	@echo -e "\n\n\033[1;34m╔═══════════╗"
9
+	@echo -e               "║ unittest  ║"
10
+	@echo -e               "╚═══════════╝\033[00m"
11 11
 	@ineach "giti -s && echo -n ' - ' && pwd"
12 12
 
13 13
 status:

読み込み中…
キャンセル
保存