You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ Please keep in mind to check the `.env` file for changes, when you perform an up
24
24
25
25
To get started with all the defaults, simply clone the repo and run `./install.sh` in your local check-out. Sentry uses Python 3 by default since December 4th, 2020 and Sentry 21.1.0 is the last version to support Python 2.
26
26
27
-
During the install, a prompt will ask if you want to create a user account. If you require that the install not be blocked by the prompt, run `./install.sh --no-user-prompt`.
27
+
During the install, a prompt will ask if you want to create a user account. If you require that the install not be blocked by the prompt, run `./install.sh --skip-user-prompt`.
28
28
29
29
Please visit [our documentation](https://develop.sentry.dev/self-hosted/) for everything else.
# Checks if we are on latest commit from github if it is running from master branch
4
4
if [[ -d"../.git"&&"${SKIP_COMMIT_CHECK:-0}"!= 1 ]];then
5
5
if [[ $(git branch | sed -n '/\* /s///p')=="master" ]];then
6
6
if [[ $(git rev-parse HEAD)!=$(git ls-remote $(git rev-parse --abbrev-ref @{u} | sed 's/\// /g')| cut -f1) ]];then
7
-
echo"Seems like you are not using the latest commit from self-hosted repository. Please pull the latest changes and try again.";
7
+
echo"Seems like you are not using the latest commit from the self-hosted repository. Please pull the latest changes and try again, or suppress this check with --skip-commit-check.";
0 commit comments