소스 검색

bash -> sh.

Dan Helfman 6 년 전
부모
커밋
aad47d1741
2개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. 4 4
      .drone.yml
  2. 1 1
      scripts/run-tests

+ 4 - 4
.drone.yml

@@ -7,7 +7,7 @@ steps:
   image: python:3.5-alpine3.9
   pull: always
   commands:
-    - bash scripts/run-tests
+    - sh scripts/run-tests
 ---
 kind: pipeline
 name: python-3-6-alpine-3-9
@@ -17,7 +17,7 @@ steps:
   image: python:3.6-alpine3.9
   pull: always
   commands:
-    - bash scripts/run-tests
+    - sh scripts/run-tests
 ---
 kind: pipeline
 name: python-3-7-alpine-3-9
@@ -27,7 +27,7 @@ steps:
   image: python:3.7-alpine3.9
   pull: always
   commands:
-    - bash scripts/run-tests
+    - sh scripts/run-tests
 ---
 kind: pipeline
 name: python-3-7-alpine-3-7
@@ -37,4 +37,4 @@ steps:
   image: python:3.7-alpine3.7
   pull: always
   commands:
-    - bash scripts/run-tests
+    - sh scripts/run-tests

+ 1 - 1
scripts/run-tests

@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 
 # This script is intended to be run from the continuous integration build
 # server, and not on a developer machine. For that, see: