Ver código fonte

chore: add shebang to shell scripts

Tanvir 1 ano atrás
pai
commit
e6e05d4641
2 arquivos alterados com 4 adições e 0 exclusões
  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