소스 검색

Fix typo error

root 3 년 전
부모
커밋
c79abe479e
3개의 변경된 파일10개의 추가작업 그리고 2개의 파일을 삭제
  1. 8 0
      Makefile
  2. 1 1
      data.yaml
  3. 1 1
      yaml2fstab.py

+ 8 - 0
Makefile

@@ -0,0 +1,8 @@
+SHELL = /bin/sh
+
+test:
+	echo "hello world"
+
+
+clean:
+	echo "Clean"

+ 1 - 1
data.yaml

@@ -4,7 +4,7 @@ fstab:
     type: xfs 
   /dev/sda2:
     mount: /
-      type: ext4 
+    type: ext4 
   /dev/sdb1:
     mount: /var/lib/postgresql 
     type: ext4

+ 1 - 1
yaml2fstab.py

@@ -1,4 +1,4 @@
-#!/usr/local/Cellar/coreutils/9.0/libexec/gnubin/env python3
+#!/usr/bin/env python3
 
 import yaml