AddOn:
- Go to about:support in your address bar
- Look for your profiles directory and open it:
- Create a file named
chrome/userChrome.cssin your profile directory:
| --- /etc/ssl/openssl.cnf~original 2022-03-16 08:35:51.000000000 +0000 | |
| +++ /etc/ssl/openssl.cnf 2022-05-04 02:37:30.336530711 +0000 | |
| @@ -56,6 +56,7 @@ | |
| # List of providers to load | |
| [provider_sect] | |
| default = default_sect | |
| +legacy = legacy_sect | |
| # The fips section name should match the section name inside the | |
| # included fipsmodule.cnf. | |
| # fips = fips_sect |
| #include <JukeboxTypes.h> | |
| /** | |
| Replace code like this: | |
| TJBox_Value values[] = {noteCVValue, gateCVValue}; | |
| JBOX_TRACEVALUES("Note CV ^0 Gate CV ^1 ", values, 2); | |
| with |
AddOn:
chrome/userChrome.css in your profile directory:| node { | |
| echo 'Results included as an inline comment exactly how they are returned as of Jenkins 2.121, with $BUILD_NUMBER = 1' | |
| echo 'No quotes, pipeline command in single quotes' | |
| sh 'echo $BUILD_NUMBER' // 1 | |
| echo 'Double quotes are silently dropped' | |
| sh 'echo "$BUILD_NUMBER"' // 1 | |
| echo 'Even escaped with a single backslash they are dropped' | |
| sh 'echo \"$BUILD_NUMBER\"' // 1 | |
| echo 'Using two backslashes, the quotes are preserved' | |
| sh 'echo \\"$BUILD_NUMBER\\"' // "1" |
To remove a submodule you need to: