mirror of
https://github.com/atom/atom.git
synced 2026-02-15 17:15:24 -05:00
11 lines
211 B
Bash
Executable File
11 lines
211 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
docker build -t atom-rpm .
|
|
docker run \
|
|
--env JANKY_SHA1="$JANKYSHA1" \
|
|
--env JANKY_BRANCH="$JANKY_BRANCH" \
|
|
--env ATOM_ACCESS_TOKEN="$ATOM_ACCESS_TOKEN" \
|
|
atom-rpm /atom/script/rpmbuild
|