Sha256: 205a98fccf43fd468c9a4da3ab586dc56834f1d75f1fdee23ef524c789b85bcf

Contents?: true

Size: 240 Bytes

Versions: 2

Compression:

Stored size: 240 Bytes

Contents

#!/bin/bash

# A script to quickly build all of the .pptx fixtures from the project's root

cd ./spec/fixtures/
for f in ./*; do
  if [[ -d $f ]]; then
    ( cd $f && echo "Building $f.pptx" && zip -r ../$f.pptx ./* > /dev/null )
  fi
done

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
openxml-pptx-0.2.2 bin/build_fixtures
openxml-pptx-0.2.0 bin/build_fixtures