| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 72e48aa commit b095aa9
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,7 +1,9 @@ | |||
| 1 | - #!/bin/bash -e | ||
| 1 | + #!/usr/bin/env bash | ||
| 2 | + | ||
| 3 | + set -e | ||
| 2 | 4 | ||
| 3 | 5 | if [[ -z "$TRAVIS" ]]; then | |
| 4 | - read -p "This operation will destroy locally modified files. Continue ? [N/y]: " answer | ||
| 6 | + read -rp "This operation will destroy locally modified files. Continue ? [N/y]: " answer | ||
| 5 | 7 | if [[ ! $answer =~ [yY] ]]; then | |
| 6 | 8 | exit 2 | |
| 7 | 9 | fi | |
@@ -13,4 +15,4 @@ git reset --hard HEAD~1 | |||
| 13 | 15 | git reset --hard HEAD~1 | |
| 14 | 16 | git reset --hard HEAD~1 | |
| 15 | 17 | git reset --hard __testing_point__ | |
| 16 | - git submodule update --init --recursive | ||
| 18 | + git submodule update --init --recursive | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,3 +1,5 @@ | |||
| 1 | + #!/usr/bin/env python | ||
| 2 | + | ||
| 1 | 3 | from typing import Sequence | |
| 2 | 4 | from setuptools import setup, find_packages | |
| 3 | 5 | from setuptools.command.build_py import build_py as _build_py | |
| Back | FazBrowse Home | New Git URL |
0 commit comments