litestream 0.7.0-arm64-darwin → 0.7.2-arm64-darwin
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/litestream/commands.rb +2 -1
- data/lib/litestream/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9dfffc3c0f402bd96f43fc2801edb03957712ca9c3fe25faf4de6900ad4aa49e
|
4
|
+
data.tar.gz: b7515d580f591dbc4dca09c7344af9c84d2278aba72345c8567d8df14e0f9395
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f6b6a8405c4211c66f69071e98d53d1bb5d950d59ab3e2184b94c2cb9bf8c7de4f0a67a6b7680943d6622983f6e479f127fa7dbc0a2c86aec445fe12276d4f7
|
7
|
+
data.tar.gz: 9b361ace1eb8326a7b1373ba0960b120a3e429f8e0bd9ae60bddcde6ddfdc22d49d8a9d53fbd1b05eaec3df684e2fc521c17b4c7025219ff6e4291b802de3fb4
|
data/lib/litestream/commands.rb
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
require_relative "upstream"
|
2
|
+
require "logfmt"
|
2
3
|
|
3
4
|
module Litestream
|
4
5
|
module Commands
|
@@ -165,7 +166,7 @@ module Litestream
|
|
165
166
|
# The forked process executes litestream and replaces itself.
|
166
167
|
exec(*cmd) if fork.nil?
|
167
168
|
else
|
168
|
-
stdout = `#{cmd.join(" ")}`.
|
169
|
+
stdout = `#{cmd.join(" ")}`.chomp
|
169
170
|
tabled_output ? text_table_to_hashes(stdout) : stdout.split("\n").map { Logfmt.parse(_1) }
|
170
171
|
end
|
171
172
|
end
|
data/lib/litestream/version.rb
CHANGED