diff options
| author | Pyry Kontio <pyry.kontio@drasa.eu> | 2019-06-14 17:17:28 +0900 |
|---|---|---|
| committer | Pyry Kontio <pyry.kontio@drasa.eu> | 2019-06-16 01:51:32 +0900 |
| commit | d6e410b3205b6734dbd8640c14841a41782e1d42 (patch) | |
| tree | 2abf00ef4e400f9c4af00c23ab769e614d27ae1b /src | |
| parent | 9f06855064ed06a50c496577b21ca50f92a2e67d (diff) | |
| download | rust-d6e410b3205b6734dbd8640c14841a41782e1d42.tar.gz rust-d6e410b3205b6734dbd8640c14841a41782e1d42.zip | |
Fix rust-lldb wrapper scripts.
Diffstat (limited to 'src')
| -rwxr-xr-x | src/etc/rust-lldb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/etc/rust-lldb b/src/etc/rust-lldb index 424302d495f..0eb99423df5 100755 --- a/src/etc/rust-lldb +++ b/src/etc/rust-lldb @@ -31,7 +31,7 @@ category_definition="type summary add --no-value --python-function lldb_rust_for category_enable="type category enable Rust" # Call LLDB with the commands added to the argument list -exec "$lldb" --one-line-before-file="$script_import" \ - --one-line-before-file="$category_definition" \ - --one-line-before-file="$category_enable" \ +exec "$lldb" --one-line-before-file "$script_import" \ + --one-line-before-file "$category_definition" \ + --one-line-before-file "$category_enable" \ "$@" |
