Browse Source

chore: add shebang to shell scripts

Tanvir 1 năm trước cách đây
mục cha
commit
e6e05d4641
2 tập tin đã thay đổi với 4 bổ sung0 xóa
  1. 2 0
      run-ollama-docker.sh
  2. 2 0
      run.sh

+ 2 - 0
run-ollama-docker.sh

@@ -1,3 +1,5 @@
+#!/bin/bash
+
 docker rm -f ollama || true
 docker pull ollama/ollama
 # CPU Only

+ 2 - 0
run.sh

@@ -1,3 +1,5 @@
+#!/bin/bash
+
 docker build -t ollama-webui .
 docker stop ollama-webui || true
 docker rm ollama-webui || true