Sfoglia il codice sorgente

chore: add shebang to shell scripts

Tanvir 1 anno fa
parent
commit
e6e05d4641
2 ha cambiato i file con 4 aggiunte e 0 eliminazioni
  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