mirror of
https://github.com/onionshare/onionshare.git
synced 2025-06-19 12:04:09 -04:00
Fix whitespace issues
* make sure files contain a final newline * use consistent indentation * trim excess whitespace * trim trailing whitespace
This commit is contained in:
parent
f56f3ae95f
commit
869a36ad82
13 changed files with 24 additions and 24 deletions
2
.github/workflows/codeql-analysis.yml
vendored
2
.github/workflows/codeql-analysis.yml
vendored
|
@ -47,7 +47,7 @@ jobs:
|
||||||
# Prefix the list here with "+" to use these queries and those in the config file.
|
# Prefix the list here with "+" to use these queries and those in the config file.
|
||||||
# queries: ./path/to/local/query, your-org/your-repo/queries@main
|
# queries: ./path/to/local/query, your-org/your-repo/queries@main
|
||||||
|
|
||||||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||||
# If this step fails, then you should remove it and run the build manually (see below)
|
# If this step fails, then you should remove it and run the build manually (see below)
|
||||||
- name: Autobuild
|
- name: Autobuild
|
||||||
uses: github/codeql-action/autobuild@v1
|
uses: github/codeql-action/autobuild@v1
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
# Usage
|
# Usage
|
||||||
display_usage() {
|
display_usage() {
|
||||||
echo "Usage: $0 [tag]"
|
echo "Usage: $0 [tag]"
|
||||||
}
|
}
|
||||||
|
|
||||||
if [ $# -lt 1 ]
|
if [ $# -lt 1 ]
|
||||||
|
@ -46,13 +46,13 @@ then
|
||||||
echo "Tag does not verify"
|
echo "Tag does not verify"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
cat ../verify.txt |grep "using RSA key 927F419D7EC82C2F149C1BD1403C2657CD994F73"
|
cat ../verify.txt | grep "using RSA key 927F419D7EC82C2F149C1BD1403C2657CD994F73"
|
||||||
if [ $? -ne 0 ]
|
if [ $? -ne 0 ]
|
||||||
then
|
then
|
||||||
echo "Tag signed with wrong key"
|
echo "Tag signed with wrong key"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
cat ../verify.txt |grep "^gpg: Good signature from"
|
cat ../verify.txt | grep "^gpg: Good signature from"
|
||||||
if [ $? -ne 0 ]
|
if [ $? -ne 0 ]
|
||||||
then
|
then
|
||||||
echo "Tag verification missing 'Good signature from'"
|
echo "Tag verification missing 'Good signature from'"
|
||||||
|
|
|
@ -320,15 +320,15 @@ div#uploads .upload .upload-status {
|
||||||
}
|
}
|
||||||
|
|
||||||
div#uploads .upload input.cancel {
|
div#uploads .upload input.cancel {
|
||||||
color: #d0011b;
|
color: #d0011b;
|
||||||
border: 0;
|
border: 0;
|
||||||
background: none;
|
background: none;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
float:right;
|
float:right;
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,7 +40,7 @@ Verbose mode
|
||||||
When developing, it's convenient to run OnionShare from a terminal and add the ``--verbose`` (or ``-v``) flag to the command.
|
When developing, it's convenient to run OnionShare from a terminal and add the ``--verbose`` (or ``-v``) flag to the command.
|
||||||
This prints a lot of helpful messages to the terminal, such as when certain objects are initialized, when events occur (like buttons clicked, settings saved or reloaded), and other debug info. For example::
|
This prints a lot of helpful messages to the terminal, such as when certain objects are initialized, when events occur (like buttons clicked, settings saved or reloaded), and other debug info. For example::
|
||||||
|
|
||||||
$ $ poetry run onionshare-cli -v ~/Documents/roms/nes/Q-bert\ \(USA\).nes
|
$ poetry run onionshare-cli -v ~/Documents/roms/nes/Q-bert\ \(USA\).nes
|
||||||
╭───────────────────────────────────────────╮
|
╭───────────────────────────────────────────╮
|
||||||
│ * ▄▄█████▄▄ * │
|
│ * ▄▄█████▄▄ * │
|
||||||
│ ▄████▀▀▀████▄ * │
|
│ ▄████▀▀▀████▄ * │
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue