소스 검색

Adding shitty installer

spesk1 4 년 전
부모
커밋
0b6572a629
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. 11 0
      install.sh

+ 11 - 0
install.sh

@@ -0,0 +1,11 @@
+#!/bin/bash
+
+installDir="$HOME/.local/bin/"
+
+if [ ! -d $installDir ]; then
+	echo "Making $installDir"
+	mkdir -p $installDir
+fi
+
+echo "Copying bin"
+cp ./yt-split-track $installDir