Sha256: b88deda6b49d069f5143a89af7bb871e8dd7349233e272e98811a8d5f30f58f1

Contents?: true

Size: 372 Bytes

Versions: 12

Compression:

Stored size: 372 Bytes

Contents

#!/usr/bin/env bash

set -eu

etag_file="$1"
config_json_file="$2"

curl --compressed \
    -H "Content-Type: application/json; UTF8" \
    -H "If-Match: $(cat $etag_file)" \
    -H "Authorization: Bearer ${REMOTE_CONFIG_ACCESS_TOKEN}" \
    -X PUT "https://firebaseremoteconfig.googleapis.com/v1/projects/${FIREBASE_PROJECT_ID}/remoteConfig" \
    -d "@$config_json_file"

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
remocon-0.5.1 bin/put_by_curl
remocon-0.5.0 bin/put_by_curl
remocon-0.4.4 bin/put_by_curl
remocon-0.4.3 bin/put_by_curl
remocon-0.4.2 bin/put_by_curl
remocon-0.4.1 bin/put_by_curl
remocon-0.4.0 bin/put_by_curl
remocon-0.4.0.pre.1 bin/put_by_curl
remocon-0.3.1 bin/put_by_curl
remocon-0.3.0 bin/put_by_curl
remocon-0.2.0 bin/put_by_curl
remocon-0.1.0 bin/put_by_curl